5-javascript基础

2017-04-21  本文已影响13人  梁王io

javascript基础

javascript基础类型

基本数据类型:String,boolean,Number,Symbol(ES6新增),Undefined, Null
引用数据类型:Object
基本数据类型中有两个为特殊数据类型: null, undefined
js的常见内置对象:Date,Array,Math,Number,Boolean,String,Array,RegExp,Function..

判断Object的方法

Object.prototype.tostring.call()
typeof ,但typeof对于数组也会返回Object (typeof一个函数会返回function)

判断Array的方法

Object.prototype.tostring.call()

Object.prototype.toString.call(a)
"[object Array]"

也可以看构造器
a.constructor == Array

上一篇下一篇

猜你喜欢

热点阅读