Day10:写出执行结果并解释原因

作者: Genzhen创建于 2020年6月22日更新于 2025年5月20日
javascript
var x = 1;
if (function f() {}) {
    x += typeof f;
}
console.log(x)
// Write the execution result and explain the reason

内容来源: lgwebdream/FE-Interview