Como remover caracteres selecionados de uma string em javascript
// app.js
str = 'AppDividend';
console.log('Original String:', str);
newStr = str.substr(1, str.length);
console.log('After removing the first character:', newStr);
John Michael Romero