简述 typeof 和 instanceof

14 查阅

简述 typeof 和 instanceof 的作用。

参考答案:

解析: typeof 返回一个字符串,用于说明元算数的类型; instanceof 判断一个变量是否是某个对象(类)的实例,返回值是布尔类型的。

作用