Front End Developer (AngularJS) Question:
Download Questions PDF

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

Front End Developer (AngularJS) Interview Question
Front End Developer (AngularJS) Interview Question

Answer:

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


"5" == 5; // true

"5" === 5; // false

Download Front End Developer (AngularJS) Interview Questions And Answers PDF

Previous QuestionNext Question
Explain how will you show/hide buttons and enable/disable buttons conditionally?Tell me what is the difference between responsive and adaptive development?