javascript typeof instanceof
摘要:typeof用以获取一个变量或者表达式的类型,typeof一般只能返回如下几个结果: number,boolean,string,function(函数),object(NULL,数组,对象),undefined。 instanceof用于判断一个变量是否某个对象的实例,主要是沿着 prototyp
阅读全文
posted @ 2019-11-19 17:29