EK
Size: a a a
EK
С
hm
Вキ
E
Вキ
E
Вキ
E
E
Вキ
AS
AS
E
Вキ
const smthng = 'smthng';
const passed = 'passed';
const failed = 'failed';
let a = null;
console.log(a ?? smthng ? passed : failed);
console.log(a ??= smthng ? passed : failed);
E
const smthng = 'smthng';
const passed = 'passed';
const failed = 'failed';
let a = null;
console.log(a ?? smthng ? passed : failed);
console.log(a ??= smthng ? passed : failed);
Вキ
const smthng = 'smthng';
const passed = 'passed';
const failed = 'failed';
let a = failed;
console.log(a ?? smthng ? passed : failed);
console.log(a ??= smthng ? passed : failed);