LAST CONTENT

December 20, 2022Javascript
10 rules to help you write cleaner js code

In this article, i'll show you the established best practices for writing clean and readable JavaScript code, including naming conventions, using ES6 features, avoiding global variables, keeping functions as small as possible, and more.

November 6, 2022Javascript
14 tips to write better Javascript

Here are some of my favorite tips for writing cleaner Javascript code, skip the clever keep it simple.

October 22, 2022Javascript
Hoisting

In JavaScript hoisting refers to the process by which the compiler moves the declaration of functions, variables or classes up their scope, before the code is executed...