Skip to content

Instantly share code, notes, and snippets.

@Bizunow
Last active August 23, 2017 08:43
Show Gist options
  • Save Bizunow/919ef63b79fe1bac7bc4d48af7625694 to your computer and use it in GitHub Desktop.
Save Bizunow/919ef63b79fe1bac7bc4d48af7625694 to your computer and use it in GitHub Desktop.
[Get URL last segment] #js
// getLastUrlSegment('https://vk.com/ibizunov') // return 'ibizunov'
function getLastUrlSegment(url) {
const parts = url.split('/');
return lastSegment = parts.pop() || parts.pop();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment