Created
September 19, 2019 17:46
-
-
Save djD-REK/7861dde22f68b59262fe2abd163849dc 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
let views = 10000 | |
`${views} views` === views + " views" // true | |
`${views} views` === "".concat(views).concat(" views") // true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment