Articles
49 articles covering Node.js, JavaScript, backend development, and more.
Functions
Functions help keep your code organized and reusable. Instead of writing the same code over and over again, you can write it once inside a function and then reuse that Read more
Loops
## For Loop The `for` loop is widely used to execute a block of code a specific number of times. It consists of an initialization, a condition, and an increment Read more
Conditional statements
## If Statement The `if` statement is the foundation of conditional logic in Javascript. It executes a block of code if a specified condition is evaluated as `true`. ```javascript let Read more
Tricky JS part 1
Javascript is pretty famous for its tricky and sometimes unexpected behaviour. I am going to show some examples starting with expected behaviour that is maybe not straightforward right away and Read more
Working with variables 2
Continuing with working with variables, in this post we will go through various ways you can work with arrays and objects in Javascript. ## Operations on Arrays Arrays in JS Read more
Working with variables 1
Understanding how to perform operations, assignments, and manipulations with variables is essential for creating dynamic and functional applications. In this post, we'll explore various ways to work with variables in Read more
Variables and data types
Variables and data types in Javascript Read more
Installing NodeJS
Installing NodeJS Read more
Glossary
Glossary of terms Read more