Skip to content

Instantly share code, notes, and snippets.

View tashian's full-sized avatar

Carl Tashian tashian

View GitHub Profile
> F = function() {}
function () {}
> F.prototype = new String("hello")
"hello"
> f = new F()
function () {}
> f.length
0
(why isn't this 5?)