In JS it's always better to use `===` vs. `==`, since the latter will introduce implicit type casting: ``` > '1' == 1 true ``` For example, see https://github.com/tcvan0707/txt2html/blob/main/src/txt2html.js#L35
In JS it's always better to use
===vs.==, since the latter will introduce implicit type casting:For example, see https://github.com/tcvan0707/txt2html/blob/main/src/txt2html.js#L35