130-if else语句

Posted wuxiaohui1983

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了130-if else语句相关的知识,希望对你有一定的参考价值。

分支-if语句

if else语法
if(<test>)
<code executed if <test> is true>
else
<code executed if <test> is false>

如果if和else要执行的代码有多行,可以加上{}组成一个块

if(<test>){
<code executed if <test> is true>
}else{
<code executed if <test> is false>
}

  





以上是关于130-if else语句的主要内容,如果未能解决你的问题,请参考以下文章

20个简洁的 JS 代码片段

单击函数永远不会读取else语句来删除类

SQL Select 语句的用法

Oracle Decode()函数和CASE语句的比较

4.3 合并重复的条件执行片段

Python for循环使用 else 语句