Day10:写出执行结果并解释原因
作者: Genzhen创建于 2020年6月22日更新于 2025年5月20日
var x = 1;
if (function f() {}) {
x += typeof f;
}
console.log(x)
// Write the execution result and explain the reason内容来源: lgwebdream/FE-Interview
var x = 1;
if (function f() {}) {
x += typeof f;
}
console.log(x)
// Write the execution result and explain the reason内容来源: lgwebdream/FE-Interview