Answers for "node js remove the last thrree digits"

3

how to remove the last character from a string in javascript

var str = "Hello TecAdmin!";
var newStr = str.slice(0, -1);
Posted by: Guest on October-05-2020

Code answers related to "node js remove the last thrree digits"

Code answers related to "Javascript"

Browse Popular Code Answers by Language