Q. Consider the following code snippet : will this code work?
Code:var tensquared = (function(n) {return n*n;}(100));
β
Correct Answer: (D)
Yes
var tensquared = (function(n) {return n*n;}(100));
You must be Logged in to update hint/solution