Here’s a few tricks and traps that javascript beginners should probably know of. If you’re already an expert, feel free to read this with a knowing look.

Javascript is just another programming language. What could possibly go wrong ?

1. Did you ever try to sort an array of numbers ?

Javascript sort()uses alphanumeric sort per default.

So [1,2,5,10].sort() will output [1, 10, 2, 5].

To properly sort an array, you can use [1,2,5,10].sort((a, b) => a — b)

Easy solution, provided you knew there was a problem in the first place :)

2. new Date() is just wonderful

new Date() can accept:

3. Replace does not replace

I find it to be a good thing, as I don’t like functions that mutate their input. You also should know that replace will only replace the first match:

If you wish to replace all occurences, you can use a regex with /g :

"bob".replace(/b/g, 'l') === 'lol' // replace all occurences

4. Careful with comparisons

Reason: [1,2,3] and [1,2,3] are two separate arrays. They just happen to contain the same values. They have distinct references and cannot be compared with ===

5. Array is no primitive type

To know if your var is an array, you can still use Array.isArray(myVar)

6. Closures

This one makes a well known javascript interview question:

Did you expect it to output 0, 1, 2… ? Do you know why it does not ? How would you fix it ?

Let’s mention two of the possible solutions to this problem:

“The difference [between let and var] is scoping. var is scoped to the nearest function block and let is scoped to the nearest enclosing block (both are global if outside any block), which can be smaller than a function block.” (source)

Greeters.push(console.log.bind(null, i))

There are plenty of other ways to do this. These are only my top-2 choices :)

7. Speaking about bind

What do you think this will output ?

One point for you if you think this will crash with Cannot read property 'name' of undefined

Reason: greet is not run with proper context. Again, there are many ways to solve this.

This way you ensure that greet is called with your class instance as context.

although I find this last example less elegant in our case.

I’m glad we fixed this

Conclusion

Congrats, you’re now able to put stuff on the internet. Probably. Perhaps even without breaking everything (generally it does, though). Cheers \o/

Let me know if there’s anything I should have mentioned!