ES6中如何判断Set和Map等类型

怎么判断这些数据类型?

阅读 14.8k
4 个回答

Chai 有过讨论,这个应该可以满足了

function getType(obj) {
     var type = Object.prototype.toString.call(obj).match(/^\[object (.*)\]$/)[1].toLowerCase();
     if(type === 'string' && typeof obj === 'object') return 'object'; // Let "new String('')" return 'object'
     if (obj === null) return 'null'; // PhantomJS has type "DOMWindow" for null
     if (obj === undefined) return 'undefined'; // PhantomJS has type "DOMWindow" for undefined
     return type;
   }
getType(new Map()) // "map"

Object.prototype.toString.call() 判断

单纯确认一种 xxx instanceof Set 也能判断吧

新手上路,请多包涵

正确
clipboard.png

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题