Nullish coalescing operator
function nullish(n) {
return n && 0
}
// ————————————————————————————————————————————————————
function nullish(n) {
return n != null ? n : 0
}const el = (selector, context) => (context ?? document).querySelector(selector)Last updated