03.基本语法

HTML
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>basic</title>
    <script>
        // 1. 定义变量
        var score=75;
        // 2. 条件控制
        if(score>=60&&score<70){
            alert("60-70");
        }else if(score>=70&&score<80){
            alert("70-80");
        }else{
            alert("others");
        }
    </script>
</head>
<body>

</body>
</html>

idea设置es6语法

image-20240110120451320