编程语言
首页 > 编程语言> > 7.javascript偏门运算

7.javascript偏门运算

作者:互联网

1.幂的运算

var x = 5;
var z = x ** 2;          // 结果是 25

2.使用数学函数进行幂运算

var x=5;
var z=Math.pow(x,2);    //结果是25

3.typeof  返回数据类型

 

typeof x;    //如果x是数组或者对象,返回object
typeof y;    //如果y没有值,返回undefined
typeof undefined              // undefined
typeof null                   // object
null === undefined            // false
null == undefined             // true
typeof true                // 返回 "boolean"
typeof false               // 返回 "boolean"
typeof {name:'Bill', age:62} // 返回 "object"
typeof function myFunc(){}   // 返回 "function"
typeof ""                  // 返回 "string"
typeof "Bill"              // 返回 "string"
typeof "Bill Gates"          // 返回 "string"
typeof 0                   // 返回 "number"
typeof 314                 // 返回 "number"
typeof 3.14                // 返回 "number"
typeof (7)                 // 返回 "number"
typeof (7 + 8)             // 返回 "number"

4.instanceof 判断是否是对象实例

instanceof array;

   

标签:返回,Bill,运算,偏门,javascript,number,typeof,var,undefined
来源: https://www.cnblogs.com/mxx520/p/15765256.html