这是我参与8月更文挑战的第2天,活动详情查看:8月更文挑战json
JavaScript 判断变量的方式有:数组
typeof(variable)
variable instanceof Array
variable.constructor = Array
Object.prototype.toString.call(variable)
var num = 123;
var str = 'abcdef';
var bool = true;
var arr = [1, 2, 3, 4];
var json = { name: 'jsliang', age: 25 };
var func = function () { console.log('this is function'); }
var und = undefined;
var nul = null;
var date = new Date();
var reg = /^[a-zA-Z]{5,20}$/;
var error = new Error();
var nan = NaN;
console.log(
typeof num, // number
typeof str, // string
typeof bool, // boolean
typeof arr, // object
typeof json, // object
typeof func, // function
typeof und, // undefined
typeof nul, // object
typeof date, // object
typeof reg, // object
typeof error, // object
typeof nan, // number
typeof 10n; // bigint
typeof BigInt(10); // bigint
typeof Symbol(); // symbol
);
复制代码
typeof
能区分的:markdown
number
string
boolean
undefined
symbol
function
object
。PS:为何会出现
type null // object
这种状况呢?由于在 JS 的最第一版本中,使用的是 32 位系统,为了性能考虑使用低位存储了变量的类型信息,000 开头表明是对象,然而 null 表示为全零,因此将它错误的判断为 object 。虽然如今的内部类型判断代码已经改变了,可是对于这个 Bug 倒是一直流传下来。app
用于实例和构造函数的对应。例如判断一个变量是不是数组,使用 typeof
没法判断,但可使用 [1, 2] instanceof Array
来判断。由于,[1, 2]
是数组,它的构造函数就是 Array
。ide
instanceof
判断原型链指向,咱们能够看一下它的实现原理:函数
function myInstanceof(left, right) {
if (typeof left !== 'object' || right === null) {
return false;
}
// 得到类型的原型
let prototype = right.prototype
// 得到对象的原型
left = left.__proto__
// 判断对象的类型是否等于类型的原型
while (true) {
if (left === null)
return false
if (prototype === left)
return true
left = left.__proto__
}
}
console.log(myInstanceof([1,2,3], Array)) // true
复制代码
var num = 123;
var str = 'abcdef';
var bool = true;
var arr = [1, 2, 3, 4];
var json = { name: 'jsliang', age: 25 };
var func = function () { console.log('this is function'); }
var und = undefined;
var nul = null;
var date = new Date();
var reg = /^[a-zA-Z]{5,20}$/;
var error = new Error();
console.log(
num instanceof Number, // false
str instanceof String, // false
bool instanceof Boolean, // false
und instanceof Object, // false
nul instanceof Object, // false
arr instanceof Array, // true
json instanceof Object, // true
func instanceof Function, // true
date instanceof Date, // true
reg instanceof RegExp, // true
error instanceof Error, // true
)
复制代码
instanceof
能判断的有:post
Array
Function
Date
RegExp
Error
var num = 123;
var str = 'abcdef';
var bool = true;
var arr = [1, 2, 3, 4];
var json = { name: 'jsliang', age: 25 };
var func = function () { console.log('this is function'); }
var und = undefined;
var nul = null;
var date = new Date();
var reg = /^[a-zA-Z]{5,20}$/;
var error = new Error();
function Person(){
}
var Tom = new Person();
console.log(
Tom.constructor === Person, // true
num.constructor === Number, // true
str.constructor === String, // true
bool.constructor === Boolean, // true
arr.constructor === Array, // true
json.constructor === Object, // true
func.constructor === Function, // true
date.constructor === Date, // true
reg.constructor === RegExp, // true
error.constructor === Error // true
);
复制代码
获得的全部结果都是 true
,除了 undefined
和 null
,其余类型基本能够经过 constructor
判断。性能
不过由于 constructor
的属性是能够被修改的,可能致使检测出的结果不正确。ui
var num = 123;
var str = 'abcdef';
var bool = true;
var arr = [1, 2, 3, 4];
var json = { name: 'jsliang', age: 25 };
var func = function () { console.log('this is function'); }
var und = undefined;
var nul = null;
var date = new Date();
var reg = /^[a-zA-Z]{5,20}$/;
var error = new Error();
console.log(
Object.prototype.toString.call(num), // [object Number]
Object.prototype.toString.call(str), // [object String]
Object.prototype.toString.call(bool), // [object Boolean]
Object.prototype.toString.call(arr), // [object Array]
Object.prototype.toString.call(json), // [object Object]
Object.prototype.toString.call(func), // [object Function]
Object.prototype.toString.call(und), // [object Undefined]
Object.prototype.toString.call(nul), // [object Null]
Object.prototype.toString.call(date), // [object Date]
Object.prototype.toString.call(reg), // [object RegExp]
Object.prototype.toString.call(error), // [object Error]
);
复制代码
一个完美的判断方法,能够检测上面提到的全部类型,只须要将它的结果 result.slice(8, -1)
就能获得具体的类型。this