01. What is the difference between Double equal (==) and Triple equal (===) in JavaScript ? Both of these comparison operators have equality operators, the triple equals, ===, is what’s called a strict equality operator while the double equals are equality operators. In order to evaluate the equality operator, the value and the type of the operands must match. If the value and the type are…