JS NVL функция

var baz = 0 ?? 42;
console.log(baz);
// expected output: 0
Xerothermic Xenomorph