tłumij przestrzenie z przodu i na końcu JavaScript String

var hello = '     Hello there!    ';

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