08-2-if的其他写法

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<script>
    // 当真语句只有一条代码的时候(但是不推荐)
    // if (4<5){
    //     alert(1)
    // };

    // if(4<5)alert(1);

    // if(4<5)
    //     alert(1);
    // else
    //     alert(2);
</script>
</body>
</html>

猜你喜欢

转载自www.cnblogs.com/zhangyu666/p/11479585.html