What is different between == and === in javascript ?

== operator don't check the type where as === is also check the type of variable while compare. ex : 5=="5" => true 5==="5" => false

Comments