Answers for "JavaScript strip the last number from a string"

0

javascript remove last charter stings

const s = "your_string";
const withoutLastChunk = s.slice(0, s.lastIndexOf("_"));
console.log(withoutLastChunk);
Posted by: Guest on January-05-2021

Code answers related to "JavaScript strip the last number from a string"

Code answers related to "Javascript"

Browse Popular Code Answers by Language