Last active
February 26, 2017 12:14
-
-
Save electrovladyslav/cc041d679e1035594df30cd6dfbbab2a to your computer and use it in GitHub Desktop.
Emoji-code-09
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
// ZWJ-последовательность: семья (мужчина, женщина, мальчик) | |
// U+1F468 + U+200D + U+1F469 + U+200D + U+1F466 | |
[...'👨👩👦'] // ["👨", "", "👩", "", "👦"] | |
‘👨👩👦’.length // 8 | |
// нейтральная семья | |
// U+1F46A | |
[...’👪’] // [’👪’] | |
’👪’.length // 2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment