Skip to content

Commit

Permalink
removed the answer from one of the questions
Browse files Browse the repository at this point in the history
  • Loading branch information
liammclennan committed Aug 12, 2011
1 parent c07e4a3 commit e0f33fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion topics/about_functions_and_closure.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ test("using call to invoke function",function(){
//function, and the arguments to be sent to the function,multiple arguments are separated by commas.
var result = invokee.call("I am this!", "Where did it come from?");

equals(result,"I am this!Where did it come from?","what will the value of invokee's this be?");
equals(result,__,"what will the value of invokee's this be?");
});

test("using apply to invoke function",function(){
Expand Down

0 comments on commit e0f33fc

Please sign in to comment.