Skip to content

Instantly share code, notes, and snippets.

@vetri02
Created October 7, 2012 17:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vetri02/3848940 to your computer and use it in GitHub Desktop.
Save vetri02/3848940 to your computer and use it in GitHub Desktop.
Find Issue in FF
var fg = function(s){
var d = s+1;
return d;
};
var callFunc = function (f) {
var i,arr;
arr = [];
for(i=0;i<1;i+1){
arr.push(f(i));
arr.push(f(i));
}
console.log(arr);
return arr;
};
var z = callFunc(fg);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment