=is an assignment operator, for example. If you run it var x = 1;, it xwill make a difference 1.
==(or !=) - a comparison operator that checks if the value of something is equal to the value of something else. for example, it if(x == 1)will be evaluated before true, and therefore it will be if(x == true), because it 1will evaluate before trueand 0for evaluation false.
=== ( !==) - , , - , , - . if(x === 1) true, if(x === true) false, 1 ( x) , true .