Answers

Question and Answer:

  Home  Front End Developer (AngularJS)

⟩ Tell me what is the difference between == and ===?

== compares the value; === compares the value and the type:

"5" == 5; // true

"5" === 5; // false

 181 views

More Questions for you: