引用值即对象,使用new后跟构造函数创建,不同于原始值,引用值保存在堆空间中。
String
1 2 3 4 5 6 7
| s1 = "text" s2 = s1.substring(2)
s1 = new String("text") s2 = s1.substring(2) s1 = null;
|
方法
1 2 3 4 5 6 7 8 9
| str = "hello" s2 = "world" str.concat(s2)
str.slice(2) str.substring(2) str.substr str.slice(-1)
|
Number
方法
1 2 3 4 5 6
| toString(a) "10".toString(2)
toFixed(a) 10.toFixed(2)
|
Math
方法
1 2 3 4 5 6
| Math.max() Math.min() Math.ceil() Math.floor() Math.floor(Math.random()*10+2)
|