Created
October 17, 2011 03:25
-
-
Save stevez/1291875 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var s = new F(); // s get the F.prototype | |
s.a; // return 'b'; | |
s.prototype; // return undefined | |
var string = new String(); //get String.property | |
var array = new Array(); //get Array.property | |
var num = new Number(); // get Number.property |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment