任何人都可以解释这里发生的事情吗?两个相等的字符串在比较时返回false

时间:2017-11-10 03:56:03

标签: javascript string-comparison

T2

以下是boost::mpl::inherit_linearly

的链接

1 个答案:

答案 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