Skip to content

Instantly share code, notes, and snippets.

@GuilhermeBarile
Created September 5, 2011 16:39
Show Gist options
  • Save GuilhermeBarile/1195418 to your computer and use it in GitHub Desktop.
Save GuilhermeBarile/1195418 to your computer and use it in GitHub Desktop.
javascript split() behaviour
> var t = "inventory/coisa"
> t.split("/")
[ 'inventory', 'coisa' ]
> var t1 = "inventory"
> t1.split("/")
[ 'inventory' ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment