一.数组的高阶方法
forEach(遍历)
var arr = ['我','和','我的','祖国'];
arr.forEach(function(item,index,self){...13,32,67,98,11,23,65,1,2,3,9];
var ret = arr.some(function(item){
return item > 12;
})
console.log(ret)
二.数组新增方法...箭头函数就是函数简写方式
组成: 参数 => 语句,
参数不是1个: (参数,参数2)=>语句
语句不止一条: 参数 =>{语句1;语句2;return 返回值}
返回的对象格式: 参数=>({对象}...1.函数的默认参数
function add(a,b=10){
alert(a+b);
}
add(3,5);
add(3)
2.函数的不定参数
function add(...args)...this.name},今年${
this.age}`)
}
};
console.log(user)
对象的继承
__proto__对象的继承
var man={