Skip to content

Instantly share code, notes, and snippets.

@ahmadajmi
Created March 24, 2011 08:43
Show Gist options
  • Save ahmadajmi/884754 to your computer and use it in GitHub Desktop.
Save ahmadajmi/884754 to your computer and use it in GitHub Desktop.
Strings methods
var str = new String("foo"); // String Object
str.length; // return 3
var str = "foo"; // String Literal
str.length; // return 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment