isObject:判断数据是不是引用类型的数据 (例如: arrays, functions, objects, regexes, new Number(0),以及 new String(''))

function isObject(value) {      
  let type = typeof value;

  return value != null && (type == 'object' || type == 'function');
}
posted @ 2020-01-19 14:52  入坑的H  阅读(134)  评论(0编辑  收藏  举报