js 常用数据类型

基本数据类型:UndefinedNullBooleanNumberStringObject
值类型:NumberBooleanNullUndefined
引用类型:ObjectArrayFunction

判断数据类型

function typeOf(obj){
  return Object.prototype.toString.call(obj).split(' ')[1].split(']')[0]
} // 会返回对应的数据类型  Undefined、Null、Boolean、Number、String、Object、Function

你可能感兴趣的:(js 常用数据类型)