strip
strip() -> stringStrips all leading and trailing whitespace from a string.
Example
'    hello world!    '.strip();
// -> 'hello world!'strip() -> stringStrips all leading and trailing whitespace from a string.
'    hello world!    '.strip();
// -> 'hello world!'