Skip to content

Instantly share code, notes, and snippets.

@yeikos
Created September 7, 2013 06:01
Show Gist options
  • Save yeikos/6473168 to your computer and use it in GitHub Desktop.
Save yeikos/6473168 to your computer and use it in GitHub Desktop.
JavaScript tips
'string'.substr(-2); // 'ng' (IE <= 9 returns 'string')
'string'.slice(-2); // 'ng' (all browsers)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment