# == vs === in JavaScript: what's the difference?

> Learn the difference between the == and === operators in JavaScript: === checks both type and value while == coerces types, so default to === in most cases.

Author: [Flavio Copes](https://flaviocopes.com/about/) | Published: 2019-09-02 | Topics: [JavaScript](https://flaviocopes.com/tags/js/) | Canonical: https://flaviocopes.com/javascript-comparison-operator-difference/

In [JavaScript](https://flaviocopes.com/javascript/) you can use two different operators to check for object equality. They are `==` and `===`.

They basically do the same thing, but there is a big difference between the two.

`===` will check for equality of two values. If they are objects, the objects must be of the same type. JavaScript is not typed, as you know, but you have some fundamental types which you must know about.

In particular we have value types (Boolean, null, undefined, String and Number) and reference types (Array, Object, Function).

If two values are not of the same type, `===` will return false.

If they are of the same type, JavaScript will check for equality.

With **reference types**, this means the values need to reference the *same* object / array / function. Not one with the same values: the same one.

`==` is different because it will attempt to convert types to match.

This is why you get results like

```js
false == '0'  //true
false === '0' //false
null == undefined //true
null === undefined  //false
```

In my experience, in 97% of the cases you'll want to use `===`, unless `==` provides exactly what you want. It has less drawbacks and edge cases.

The same goes for `!=` and `!==`, which perform the same thing, but negated.

Always default to `!==`.

If you want to see exactly how `==` converts types in any comparison, I built a free [JS equality explorer](https://flaviocopes.com/tools/js-equality/) where you can try these live.
