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...
kiran-babu.hashnode.dev2 min read
Akshay Kamble
Learning web development
Well written !