๐ฐshort-circuiting
JS โฉ statement โฉ expression โฉ operator โฉ term โฉ short-circuiting
๐ table of operators
logical operator (&&, ||) - a && b, a || b
nullish coalescing (??) - a ?? b
conditional operator (?:) - condition ? a : b
optional chaining (?., ?.[]) - obj ?. prop, obj ?. [prop]
optional invocation ?.() - f ?. (args)
Last updated
Was this helpful?