Wednesday, July 9, 2014

Javascript - Remove Last Comma from a string



Javascript - Remove Last Comma from a string


var str = 'This is a test,          '; 
alert( removeLastComma(str) ); // should remove the last comma

function removeLastComma(strng){        
    var n=strng.lastIndexOf(",");
    var a=strng.substring(0,n) 
    return a;
}

No comments:

Post a Comment