 
  Data Structure Data Structure
 Networking Networking
 RDBMS RDBMS
 Operating System Operating System
 Java Java
 MS Excel MS Excel
 iOS iOS
 HTML HTML
 CSS CSS
 Android Android
 Python Python
 C Programming C Programming
 C++ C++
 C# C#
 MongoDB MongoDB
 MySQL MySQL
 Javascript Javascript
 PHP PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Which equals operator (== vs ===) should be used in JavaScript?
Double equals (==) is abstract equality comparison operator, which transforms the operands to the same type before making the comparison.
For example,
5 == 5 //true '5' == 5 //true 5 == '5' //true 0 == false //true
Triple equals (===) are strict equality comparison operator, which returns false for different types and different content.
For example,
5 === 5  // true 5 === '5' // false var v1 = {'value':'key'}; var v2 = {'value': 'key'}; v1 === v2 //falseAdvertisements
 