Answers for "how to remove last comma of a string jquery"

2

remove last comma from string javascript

str = str.replace(/,\s*$/, "");
Posted by: Guest on June-26-2020
0

remove last character from string jquery

$(document).ready(function() {

 	var chrt = 'wlearnsmart';
	alert("Delete last character here... - " + chrt.slice(0, -1));

});
Posted by: Guest on July-18-2020
0

remove last char - jquery

"1234".slice(0,-1)
Posted by: Guest on May-06-2021

Code answers related to "how to remove last comma of a string jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language