Answers for "how to replace the last character in a string in js"

1

javascript replace last character

var str1 = "Notion,Data,Identity,".replace(/.$/,".")
Posted by: Guest on April-28-2021
2

js omit last string

"somestring0".slice(0, -1)
// "somestring"
Posted by: Guest on June-05-2020

Code answers related to "how to replace the last character in a string in js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language