JSFiddle - React, Tailwind, and code Playground
by nevkatz
HTML
<div id="root">
</div>
JavaScript
let str = '/my/great/path/';
let idx = str.length-1;
let new_str = str.substr(idx);
let root = document.getElementById('root');
root.textContent = new_str;