求一个数组中的最大值
Math.max.apply(null,[1,2,3,4])=>Math.max(...[1,2,3])
讲一个数组中的元素全部添加到另一个数组中
let arr=[1,2,3];let arrs=[4,5,6];
arr.push(...arrs)
数组合并
const arr1=[1,2];
const arr2=[3,4];
[...arr1,...arr2]
数组解构
const [one,...two]=[1,2,3,4,5];
one:[1] two:[2,3,4,5]
如果[...two,one] 会报错
将字符串转化为数组
[..."hellow"]=["h","e","l","l","o","w"]
对象新增api:
Object.is() 相当于 ===,但有两点不同
在jsvascript中
+0===-0 //true
NaN===NaN //false
但是使用Object.is(+0===-0) //false
Object.is(NaN===NaN) //true
Object.assign() 将多个对象合并成一个对象,合并的目标对象为第一个对象
const a={a:1};const b={b:2,c:3};const c={c:4};
Object.assign(a,b,c) //a{a:1,b:2,c:4}
当首参数为undefined和null时 报错
Object.assign(undefined) //报错
Object.assign(null) //报错
当首参数为数字时 Object.assign(1)返回值为一个数值对象
Object.assign的新颖用法:
Object.assign(Array.prototype,{
returnMath(x,y){
return x+y
}
})
相当于
Array.prototype.returnMath=function (x,y) {
return x+y
}