(You'll need Firefox or Safari to see the emoji in the code.)
I want to take a string of emoji and do something with the individual characters.
In JavaScript "?????????????".length == 13
because "?"
length is 1, the rest are 2. So we can't do
var string = "?????????????";
s = string.split("");
c = [];
c[0] = s[0]+s[1];
console.log(c);
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…