Answers for "remove part of string in the end javascript"

9

javascript remove last character from string

const text = 'abcdef'
const editedText = text.slice(0, -1) //'abcde'
Posted by: Guest on August-27-2020
6

javascript remove last character from string

let str = "12345.00";
str = str.substring(0, str.length - 1);
Posted by: Guest on September-02-2020

Code answers related to "remove part of string in the end javascript"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language