标签:span others 赋值 ret turn 设置 sum 括号 关系
//定义一个函数sum function sum(num1,num2){ return num1+num2; } console.log(sum(10,10)); //20 //声明变量并将其设置为sum //注意:使用不带圆括号的函数,是指向同一函数,不是调用; var anotherSum=sum;//sum和anotherSum都指向同一个函数 console.log(anotherSum); //funtion console.log(anotherSum(10,10)); //sum sum=null;//让它跟函数断绝关系吗,但还是可以调用 console.log(sum);//null console.log(anotherSum);//还是有function console.log(anotherSum(10,10)); //依然可以调用 console.log(sum(10,10)); //sum is not a function;
注意:使用不带圆括号的函数,是指向同一函数,不是调用;
标签:span others 赋值 ret turn 设置 sum 括号 关系
原文地址:http://www.cnblogs.com/EllenChen/p/6773134.html