这段奇怪的 alert 会输出什么?
What will be the output of the following code?
题目类型: 技术面试题
这是一道技术面试题,常见于澳洲IT公司面试中。
难度: hard
分类: JavaScript Operators
标签: unary plus, post-increment, coercion
参考答案摘要
(+(+(+b))) 只是把 b 强制转为数字(仍为 4)。 a++ 是后置自增,参与计算时取旧值 5,随后 a 变为 6。表达式等价于 5 + 4 ,因此 alert 为 9。
本题提供 STAR 原则详细解答和技术解析,登录匠人学院学习中心即可查看完整答案。