Created
February 27, 2020 14:33
-
-
Save omarkdev/f5105649569e03e3bb52d9fd9db4bad0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const message = ' Hello world! '; | |
message.trimEnd(); | |
// " Hello world!" | |
message.trimStart(); | |
// "Hello world! " |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment