Javascript Truthy and Falsy
Dec 6, 2021 · 2 min read · First lets understand difference between '==' and '===' 1 == '1';// returns true 1==='1'; //returns false First line will return a Boolean(true or false) value of true, has '==' doesn't check the the data type so number 1 and string 1 will still retu...
GAkshay commented