<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<script>
// 单分支语句
// if (false) {
// console.log('执行语句')
// }
// if (3 > 5) {
// console.log('执行语句')
// }
// if (2 === '2') {
// console.log('执行语句')
// }
// 除了0 所有的数字都为true
// if (2) {
// console.log('执行语句')
// }
// if (0) {
// console.log('执行语句')
// }
// 除了'' 所有的字符串都为真
// if ('pink老师') {
// console.log('执行语句')
// }
console.log('----------------')
// 案例
// 1、用户输入
let score = +prompt('请输入成绩:')
// 2、进行判断输出
if (score >= 700) {
alert('恭喜考入黑马程序员!')
}
</script>
</body>
</html>
版权属于:
yu
作品采用:
《
署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0)
》许可协议授权
评论 (0)