Created
June 21, 2019 00:24
-
-
Save marclundgren/bca6edb2efecc4aa64808195d5b30c3d to your computer and use it in GitHub Desktop.
This file contains 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
// Sunflower Slice | |
// Chrome | |
'a 🌻'.slice(0, 3); // "a �" | |
// Firefox | |
'a 🌻'.slice(0, 3); // "a \ud83c" | |
// Safari | |
'a 🌻'.slice(0, 3); // "a " 👈 running this results in a string that cannot be copied to the clipboard | |
// All Browsers | |
'a 🌻'.slice(0, 2); // "a " | |
'a 🌻'.slice(0, 4); // "a 🌻" |
Author
marclundgren
commented
Jun 21, 2019
•
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment