// function go(){
// console.log("hello world");
// }
var go = function(){
console.log("hello world")
}
var show = ()=>{
console.log("world")
}
// 如果箭头函数中只有一段语句可以简写
var test = ()=>console.log("test");
test();
箭头函数的参数
var go = x => console.log(x);
var sum = (x, y) => { console.log(x + y) };
//如果只传一个参数可以直接写 两个参数的话要用小括号括起来()
go(10);
sum(3, 4);