Wie viele Bits haben Doubles?
const x = 0x10;
const x = 0b10;
const x = 4e2;
const x = 4e-2;
const x = 123.unknownProperty;
Was passiert?
let x = 0;
const result = [++x, x];
Was passiert?
let x = 0;
const result = [x++, x];
Was passiert?
true?