Answers for "how to delete the last part of a string in node js"

1

how to delete the last part of a string in node js

str = "hello I'm McDown...";
newStr = str.substring(0, str.length - 3); // Returns "hello I'm McDown"
Posted by: Guest on January-24-2021

Code answers related to "how to delete the last part of a string in node js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language