Menekan ruang di depan dan di ujung javascript string

var hello = '     Hello there!    ';

// returns "Hello there!"
hello.trim();
ZeldaIsANerd