#web-development
Read more stories on Hashnode
Articles with this tag
const one = false || {} || null ;const two = null || false || "" ;const three = [] || 0 || true ; console.log(one, two, three); Before jumping into...