Skip to content

Instantly share code, notes, and snippets.

@mrryanjohnston
Created July 5, 2011 14:34
Show Gist options
  • Save mrryanjohnston/1064945 to your computer and use it in GitHub Desktop.
Save mrryanjohnston/1064945 to your computer and use it in GitHub Desktop.
> typeof new String("test")
'object'
> typeof "test"
'string'
> var myString = new String("test")
> myString
{ '0': 't', '1': 'e', '2': 's', '3': 't' }
> var myOtherString = "test"
> myOtherString
'test'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment