//方法的命名方式:
//第一种:
function test(w){
console.log(w);
}
test(100);
function t(ww){
return ww+20;
}
var tt=t(100);
console.log(tt);
//第二种:必须先声明再使用
var result=function(e){
console.log(e);
}
result(200);//必须放在方法后面
var re=function(ee){
return ee;
}
var rr=re(166);
console.log(rr);