javascript学习要点

javascript 的类型:
String
Number
Boolean
Undefined
Null
RegExp
Object

javascript 中的String 、Number、Boolean类型都有相关的方法进行类型转换。

'a'===new String('a')  //false
'a'==new String('a').toString()  //true
'a'==new String('a')  //true

需要说明的是 ‘==’会进行自动类型转换,而‘===’不会。

数组

数组也是对象,它从全局的Array.prototype中继承了一些特殊的方法。然而javascript数组并不是真正的数组,他们就是具有唯一数字(一般从开始)索引的对象。

你可能感兴趣的:(javascript)