Skip to content

Instantly share code, notes, and snippets.

@Marak
Forked from cloudhead/gist:359569
Created April 7, 2010 23:23
Show Gist options
  • Save Marak/359571 to your computer and use it in GitHub Desktop.
Save Marak/359571 to your computer and use it in GitHub Desktop.
var F = function () {};
F.name // ''
F.name = "foo";
F.name // ''
function F(){}
var blah = new F();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment