var output = (function(x) {
//do something with x
return x; })
(0);
I don't get what x is being passed in as or where its being passed in. Maybe this is not written correctly.
var output = (function(x) {
//do something with x
return x; })
(0);
I don't get what x is being passed in as or where its being passed in. Maybe this is not written correctly.