js method to remove last code example
Example 1: javascript remove last character from string
var str = "Hello";
var newString = str.substring(0, str.length - 1); //newString = Hell
Example 2: remove last element from array javascript
array.splice(-1,1)