Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 285 Bytes

if语句.md

File metadata and controls

14 lines (10 loc) · 285 Bytes

if语句

大多数编程语言中最为常用的一个语句就是if 语句

if (i > 25)
alert("Greater than 25."); // 单行语句
else {
alert("Less than or equal to 25."); // 代码块中的语句
}

业界普遍推崇的最佳实践是始终使用代码块