欢迎来到Cecilia陈的博客

孤独,是人一生最好的修行。

[06--JS] 运算符

<!DOCTYPE html>
<html lang="zh">
<head>
    <meta charset="UTF-8">
    <title>Title</title>

    <script>
        // 算数运算符
        // + - * / % ++ --

        // 比较运算符
        // > >= < <= != == === !==

        console.log(1 == "1");// true 弱等于
        console.log(1 === "1");// false 强等于
        console.log(1 === 1);// true 强等于

        // 逻辑运算符
        // && || !

        // 赋值运算符
        // = += -= *= /=
    </script>

</head>
<body>

</body>
</html>
posted @ 2019-10-16 23:43  Cecilia陈  阅读(97)  评论(0编辑  收藏  举报