Skip to content

Instantly share code, notes, and snippets.

@NiallJoeMaher
Created May 14, 2019 06:26
Show Gist options
  • Save NiallJoeMaher/d9d820a652c389eaf41ead85ad862b10 to your computer and use it in GitHub Desktop.
Save NiallJoeMaher/d9d820a652c389eaf41ead85ad862b10 to your computer and use it in GitHub Desktop.
// trimStart
'Hello World'.trimEnd();
// returns 'Hello World'
' Hello World'.trimEnd();
// returns ' Hello World'
' Hello World '.trimEnd();
// returns ' Hello World'
// trimLeft
'Hello World'.trimRight();
// returns 'Hello World'
' Hello World'.trimRight();
// returns ' Hello World'
' Hello World '.trimRight();
// returns ' Hello World'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment