Use the spread syntax to find what an emoji is made up of
Spread syntax allows an iterable such as an array expression or string to be expanded in places where zero or more arguments (for function calls) or elements (for array literals) are expected, or an object expression to be expanded in places where zero or more key-value pairs (for object literals) are expected. [1]
[1] Source: MDN Web Docs
[...'๐จโ๐ค']
(3)ย ['๐จ', 'โ', '๐ค']0: "๐จ"1: "โ"2: "๐ค"length: 3[[Prototype]]: Array(0)
[...'๐ง']
['๐ง']
[...'๐ฉโ๐ฉโ๐งโ๐ง']
(7)ย ['๐ฉ', 'โ', '๐ฉ', 'โ', '๐ง', 'โ', '๐ง']
Learned from @mgechev at https://twitter.com/mgechev/status/1490920854313648128/photo/1
Useful? not sure
Interesting? Hell yeah!