Pergunta de entrevista da empresa Revature

What is the difference between == and === in javascript?

Resposta da entrevista

Sigiloso

19 de out. de 2018

== returns true if the two values are equal when they are converted to the same type. === returns true only if the two values are the same type and value.