Skip to content

Instantly share code, notes, and snippets.

@jsdmultisys
Last active January 6, 2020 07:51
Show Gist options
  • Save jsdmultisys/8f632ae62d52ead85feb14ee430698ee to your computer and use it in GitHub Desktop.
Save jsdmultisys/8f632ae62d52ead85feb14ee430698ee to your computer and use it in GitHub Desktop.
breadcrumb
const string = '/home/about';
const stripped = string.split('/);
// ["", "home", "about"]
// 0 => '', 1 => 'home', 2 => 'about'
const index = stripped.length - 1
stripped[index]
// 'about', it should be 'home'
// this is because total length is 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment