Skip to content

Instantly share code, notes, and snippets.

@kutyel
Created August 2, 2019 09:22
Show Gist options
  • Save kutyel/f3095c6f5a154de518d87a8c677bb66c to your computer and use it in GitHub Desktop.
Save kutyel/f3095c6f5a154de518d87a8c677bb66c to your computer and use it in GitHub Desktop.
String.trimStart/trimEnd()
const text = " Levy "
text.trim() // > "Levy"
text.trimStart() // > "Levy "
text.trimEnd() // > " Levy"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment