Javascript Truthy and Falsy
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...
Dec 6, 20212 min read191