gpt4 book ai didi

javascript - 为什么 (++ '' ) === 0?

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:34:45 25 4
gpt4 key购买 nike

谁能解释一下这种奇怪的 javascript 行为?

+
// Rightfully gets a syntax error, because there are no operands

+ +
// Same as above

+ + ''
// Interpreted as 0

typeof(+ + '')
// Interpreted as "number"

+ + '' === 0
// Interpreted as true

换句话说,(++ '') 被计算为零。 1)这在语法上是如何允许的? 2) 为什么计算结果为零?

最佳答案

unary plus (+) operator将右侧转换为数字。

所以你有 0 ← 0 ← 空字符串

关于javascript - 为什么 (++ '' ) === 0?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18065400/

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