Supprimer les espaces devant et à la fin d'une chaîne javascript
var hello = ' Hello there! ';
// returns "Hello there!"
hello.trim();
ZeldaIsANerd
var hello = ' Hello there! ';
// returns "Hello there!"
hello.trim();