以下代码段的作用是?
function addN(n){ var adder = function(x){ return n+x; } return adder; }
这段代码展现出了js 不同于其他语言的一个特性,first class. 试着打印结果:
var add2=addN(2); console.log(add2); var result = add2(100); console.log(result)
Output:
function (x){ return n+x; } 102
特性:可以返回function ! 太屌了。
时间: 2024-10-05 06:05:25