Explain the difference between “==” and “===”?
==
checks if the operand values are same or not by comparing it irrespective of data type while ===
compares two variables value with strict type check, which means it checks for data type also then it returns true or false.