Using jquery, underscore or pure javascript what is the best way to remove the first char of a given string?
I will make something like this:
"aamerica".substring(1,"aamerica".length);
"aamerica".slice(1);
Is better to use slice or substring?