Como remover o último dígito do número em JavaScript
var str = "stackoverflow";
str = str.substring(0, str.length - 1);
console.log(str);
RIP SQL :(