码迷,mamicode.com
首页 > Web开发 > 详细

获取js内置对象实例所属的类型

时间:2020-04-26 14:05:50      阅读:87      评论:0      收藏:0      [点我收藏+]

标签:cal   val   obj   prototype   type   tor   str   typeof   object   

在js中,typeof js内置对象实例都会返回object。例如:

let value = [1,2,‘a‘];

typeof回返回object,而Object.prototype.toString.call(value)回返回[object Array],但是自定义对象实例仍然回返回object。对于自定义对象实例可以考虑使用实例原型中的constructor属性

获取js内置对象实例所属的类型

标签:cal   val   obj   prototype   type   tor   str   typeof   object   

原文地址:https://www.cnblogs.com/fengliang/p/12778958.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!