实现一个once函数

经过once处理的函数,只能调用一次

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
function once(func){
var hasHandled = false;
return function(){
if(!hasHandled){
func.apply(null,arguments);
hasHandled = true;
}
return undefined;
}
}

function say(words){
console.log(words);
}

var newfun = once(say);
newfun("hello");
newfun("world");
newfun("!");

// hello