Skip to content

Instantly share code, notes, and snippets.

@squalvj
Created January 2, 2019 06:10
Show Gist options
  • Save squalvj/c71738e4515e3d4be13ab78cb82bbda0 to your computer and use it in GitHub Desktop.
Save squalvj/c71738e4515e3d4be13ab78cb82bbda0 to your computer and use it in GitHub Desktop.
Take the last string using split and splice
const url = 'auth/user/ucok';
const lastStr = url.split("/").slice(-1)[0];
// output 'ucok'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment