We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0e88f1 commit 2a365deCopy full SHA for 2a365de
challenges/functions-challenges.md
@@ -114,7 +114,7 @@ if(!Function.prototype.bind){
114
var fnArgs = Array.prototype.slice.call(arguments, 1);
115
116
return function(){
117
- var allArgs = funcArgs.concat(Array.prototype.slice.call(arguments))
+ var allArgs = fnArgs.concat(Array.prototype.slice.call(arguments))
118
fn.apply(context, allArgs);
119
};
120
}
@@ -641,4 +641,4 @@ This is a well known JavaScript pattern called as __Publish/Subscribe Pattern__
641
642
<br />
643
644
-[[↑] Back to top](#home)
+[[↑] Back to top](#home)
0 commit comments