Articles

29 articles covering Node.js, JavaScript, backend development, and more.

Higher order functions

As we discussed in previous post, functions are first-class citizens, which means they can be assigned to variables, passed as arguments to other functions, and returned as values from other Read more

Beginner NodeJS
beginner

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

Beginner NodeJS
beginner

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

Beginner NodeJS
beginner

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

Beginner NodeJS
beginner

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

Beginner NodeJS
beginner

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

Beginner NodeJS
beginner

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

Beginner NodeJS
beginner

Variables and data types

Variables and data types in Javascript Read more

Beginner NodeJS
beginner

Installing NodeJS

Installing NodeJS Read more

Beginner NodeJS
beginner

Showing 21-29 of 29 articles