Javascript tips you should know

DevJo
4 min readNov 29, 2021

We are close to the end of 2021. If you are still writing your Javascript code the old way, I would suggest you take a look at this article and upgrade yourself with modern Javascript syntax and be prepared for 2022. 🚀

1. Console.log

  • Add colour to your console log

Stop doing just this! ❌

Try this instead. ✅

But if you have an array of object, try this would be even better 😎

If you want to measure how fast certain operations run in your code, try this.

--

--