2
Reply

Difference between == and === in jquery

    = Is used for assigning == checks for the value === checks for value along with data type

    == only checks for value, === checks for value as well as data type. eg: 1=="1" -> true 1==="1" -> false