<!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>
来源:https://www.cnblogs.com/xichenHome/p/11689464.html