倍精度演算は何ビットですか?
const x = 0x10;
const x = 0b10;
const x = 4e2;
const x = 4e-2;
const x = 123.unknownProperty;
何が起こるでしょうか?
let x = 0;
const result = [++x, x];
何が起こるでしょうか?
let x = 0;
const result = [x++, x];
何が起こるでしょうか?
true
になるのはどれですか?