gpt4 book ai didi

javascript - JS 中的数字变量

转载 作者:行者123 更新时间:2023-11-29 17:23:37 26 4
gpt4 key购买 nike

对于变量 x=5,我怎么知道它是数字 5 还是字符“5”?

顺便说一句,在 JS 中,字符是否遵循 ASCII 表?那我可以操作一个字符变量吗?例如,如果变量 x 是字符 a,我可以执行 x=x+1 使其成为字符 b 吗?

最佳答案

要查看 x 是否为数字 5,而不是字符串“5”,您可以使用恒等运算符:

if (x === 5) {
}

Identity 不会做任何隐式转换;只有当两个操作数在没有任何转换的情况下相等时,它才会返回 true。


For example, if variable x is character a, can I do x=x+1 to make it character b?

没有。 x = x + 1 将 1 转换为字符串,执行字符串连接并返回 "a1"

关于javascript - JS 中的数字变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10907605/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com