Answers for "js remove from char last occurrence"

28

string pop last char js

var str = "Hello";
var newString = str.substring(0, str.length - 1); //newString = Hell
Posted by: Guest on July-23-2019
1

remove last 3 characters from string javascript

str = str.slice(0, -3);
Posted by: Guest on April-06-2020

Code answers related to "js remove from char last occurrence"

Code answers related to "Javascript"

Browse Popular Code Answers by Language