String Pop Last Char JS

var str = "Hello";
var newString = str.substring(0, str.length - 1); //newString = Hell
Grepper