Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
joeblow99
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
5 ms
·
1.
▲
by
joeblow99
11y ago
"loophole" is a word for "a completely legal tax maneuver I don't like"
2.
▲
by
joeblow99
11y ago
Use const for all of your references; avoid using var. If you must mutate references, use let instead of var. In my 15 years of programming javascript I've never once seen this matter.
3.
▲
by
joeblow99
11y ago
// bad const items = new Array(); // good const items = []; They obviously spent a lot of time on this guide, lots of investor dollars, and it's of almost no use.
4.
▲
by
joeblow99
11y ago
// bad const item = new Object(); // good const item = {}; Literally useless differentiation.
5.
▲
by
joeblow99
11y ago
some kind of queuing as well