Jul 24, 2017 · 1 min read
In [line 4](https://gist.github.com/tardycorgi9917/953a556f720edf39173aff2701921ea1#file-comparisons-js-L4) there is an error.
```js
“/t” == 0 // false
```
Maybe you mean this
```js
“\t” == 0 // true
```
In [line 4](https://gist.github.com/tardycorgi9917/953a556f720edf39173aff2701921ea1#file-comparisons-js-L4) there is an error.
```js
“/t” == 0 // false
```
Maybe you mean this
```js
“\t” == 0 // true
```