💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
# 1、赋值运算符(Assignment operators) 赋值运算符是一个 “=”。表示将“=”后面的内容赋值给左边的内容。 # 2、比较运算符(Comparison operators) ![](https://img.kancloud.cn/aa/d1/aad17fc4f493dc437bb2c979f7588219_957x176.png) ![](https://img.kancloud.cn/00/7c/007c1504baee7c7b400a3cfb0f66add9_750x83.png) # 3、算数运算符(Arithmetic operators) 加、减、乘、除、取余 ![](https://img.kancloud.cn/70/d5/70d5d2f46248ecb6a8a4a99b7ab2ca2b_946x404.png) # 4、逻辑运算符(Logical operators) 或者、并且、非 ``` var a = 1, b = 2, c = 0, d = false; var e = a||b; // e = a; ``` ``` //console.log(a||b); // 1 //console.log(a||c); // 1 //console.log(c||a); // 1 //console.log(c||d); // false // || 关系,先看左边,左边为true,则直接等于左边;左边为false,直接等于右边 ``` ``` console.log(a&&b); // 2 console.log(a&&c); // 0 console.log(c&&a); // 0 console.log(c&&d); // 0 // && 关系,先看左边,左边为true,直接等于右边;左边为false,直接等于左边。 console.log(10||20); // 10 /*var x = 10&&20; console.log(x||30); // 20*/ //console.log(0&&5); // 0 ``` # 5、字符串运算符(String operators) PHP中用 点(.) 连接两个字符串。 JS中用 加号(+) 连接两个字符串。 如果使用+的是两个数字,则表示加法运算;如果使用+的有一方是字符串,则表示字符串连接。 ``` console.log(2+3); // 5,表示加法运算,因为参与运算的两个值都是数值型 console.log(2+'hello'); // 2hello,表示字符串相连 console.log('hello ' + 'world'); //hello world var x = 35; console.log('hahaha' + x); // hahaha35 ``` # 6、条件(三元)运算符(Conditional operator) 元,表示参与运算的参数个数。三元意思就是参与运算的有三个值。 ``` var a = (b>c) ? x : y; ``` 上述代码整体意思是给a赋值,值可能是x,也可能是y。关键取决于b是否大于c。如果b>c,则将x赋值给a;如果b不大于c,则将y赋值给a。 # 7、一元运算符(Unary operators) ``` var a = 2, b = 3; var c = a++; // var c = a; a = a+1 var d = ++b; // b = b+1; var d=b; console.log(a, b , c, d); // a=3, b=4, c=2, d=4 ``` # 8、其他 - void 它是一个函数或是一个语言结构,返回值总是无效的undefined。经常用它来使得超链接变得无效。 ![](https://img.kancloud.cn/30/2e/302e05b66532d0a971f2291e81dc8cf0_572x161.png) - typeof它是一个函数或是一个语言结构。typeof(a)、 typeof a; 用于判断变量的数据类型。 ``` console.log(typeof(123)); // number console.log(typeof 123); // number console.log(typeof 3.14); // number console.log(typeof 'hello world');// string console.log(typeof true); // boolean ``` - in -- 用于判断下标是否存在数组中,或判断对象中是否有哪个成员 - instanceof -- 判断对象的原型