js remove end last element code example
Example 1: how to remove lasr char from string in javascript
str=str.slice(0, -1);
Example 2: remove last element from array javascript
array.splice(-1,1)
str=str.slice(0, -1);
array.splice(-1,1)