JavaScript Remover Acentos

string.normalize('NFD').replace(/[\u0300-\u036f]/g, "");
DevPedrada