Short Circuiting in "OR" Operator
const one = false || {} || null ;const two = null || false || "" ;const three = [] || 0 || true ;
console.log(one, two, three);
Before jumping into the solution, first let's understand what is in this problem.The short circuiting of logical operat...
codefree.hashnode.dev3 min read