7 Useful JavaScript Tricks and Tips

Michael Karén
JavaScript in Plain English
5 min readMay 17, 2021

--

In this article, I gathered some JavaScript tips and tricks that I believe can make you a better JavaScript developer. In no particular order, here are seven (?) JavaScript tricks!

1. Converting to numbers

JavaScript is a loosely typed language, meaning we don’t have to explicitly specify types of variables. JavaScript also freely type-converts values into a…

--

--