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

Submitted by: Muhammad
== compares the value; === compares the value and the type:


"5" == 5; // true

"5" === 5; // false
Submitted by: Muhammad

Read Online Front End Developer (AngularJS) Job Interview Questions And Answers