Both are comparison operators. The difference between both the operators is that,“==” is used to compare values whereas, “ === “ is used to compare both value and types. Example: var a = 2; var b = “2”; (a == b) // Returns true since the value of both a and b is the same […]
Interview Questions
JavaScript