箭头函数
var show = () =>{
console.log("world")
}
show()
如果箭头函数中只有一条语句,可以简写
var test =()=>console.log("test")
test();
带参数的箭头函数
如果只有一个参数,括号()可以省略
var go = x => console.log(x);
go(10);
// 两个或以上时,必须写()
var show=(x,y)=> console.log(x+y)
show(3,4);
function feof(){}
最常用,不用考虑函数声明的位置,任何位置都可以调用这类函数
function addOrder(arr,value){
var res = arr.sort((a,b)=>{
return a[value] - b[value]
})
return res;
}