Do === and == operator mean same in JS?

Do === and == operator mean same in JS?

Both operators are different. === takes the type of variable in consideration, while == make type correction based upon values of variables.