严格模式
1 |
数据类型
- undefined
- boolean
- string
- number
- object
- function
注意:
Boolean
1
2[] == true // false
!![] == true // trueNumber
浮点数最高精度17位
isFinite(num) // boolean num是否位于最小与最大数值之间 <!--2-->
数值转化
Number(num)
1
Number('123a') //NaN
parseInt(num, system)
1
parseInt(num, system) // num:需要转化的值,system:进制
parseFloat(num)
String
- toString(system)
Object
- 实例都具有的属性和方法
- constructor:保存当前构造函数
- hasOwnProperty(propetryName):属性是否属于当前实例,而不在原型链上
- isPrototypeOf(object):传入的对象是否属于当前对象的原型
- propertyIsEnumerable(propetryName):该属性是否可枚举
- toLocaleString()
- toString()
- valueOf()
- 实例都具有的属性和方法
语句
label语句
1 | let mum = 0; |
with语句
将代码的作用域设置到一个特定的对象中
with (expression) statement;
函数
- arguments
- 不存在函数签名的特性,没有函数重载