<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<title>Title</title>
<script>
var a = 10;
// if-else
if (a > 5)
{
console.log("yes");
}else {
console.log("no");
}
// if-else if-else
if (a > 5)
{
console.log("a > 5");
}else if (a < 5)
{
console.log("a < 5");
}else {
console.log("a = 5");
}
// switch
switch (a) {
case 0:
console.log("0");
break;
case 1:
console.log("1");
break;
case 2:
console.log("2");
break;
default:
console.log(a);
break
}
// for
for(let i=1;i<10;i++) // 作用域内有效
{
console.log(i)
}
// while
let i=0;
while(i<10){
console.log(i);
i++;
}
// 三元表达式
console.log(a<10?"正确":"错误")
</script>
</head>
<body>
</body>
</html>