以下程式會輸出甚麼?
What will be the output of the following JavaScript Code?
console.log("x = " = x);
var x = 1;
// A) x = 1
// B) x = undefined
// C) x = null
// D) ReferenError:x = is not defined
以下程式會輸出甚麼?
What will be the output of the following JavaScript Code?
console.log("x = " = x);
var x = 1;
// A) x = 1
// B) x = undefined
// C) x = null
// D) ReferenError:x = is not defined