Skip to content

Instantly share code, notes, and snippets.

@geminiwen
Last active December 24, 2015 01:49
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 geminiwen/6726379 to your computer and use it in GitHub Desktop.
Save geminiwen/6726379 to your computer and use it in GitHub Desktop.
Function Object in js
var a = function() {
};
var e = [];
e[0] = a;
e[1] = function() {
};
console.log(a == e[1]);
// false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment