T2
的链接
答案 0 :(得分:5)
隐藏字符在numberB的末尾具有ascii值8236 您可以通过
验证它们console.log(numberA.length, numberB.length) // 14, 16
console.log(numberA.split("").map(char => console.log(char.charCodeAt(0))))
console.log(numberB.split("").map(char => console.log(char.charCodeAt(0)))) // this will give two 8236 ascii value at the last of the string