Higher order functions

beginner

As we discussed in previous post, functions are first-class citizens, which means they can be assigned to variables, passed as...

Functions

beginner

Functions help keep your code organized and reusable. Instead of writing the same code over and over again, you can...

Loops

beginner

## For Loop The `for` loop is widely used to execute a block of code a specific number of times....

Conditional statements

beginner

## If Statement The `if` statement is the foundation of conditional logic in Javascript. It executes a block of code...

Tricky JS part 1

beginner

Javascript is pretty famous for its tricky and sometimes unexpected behaviour. I am going to show some examples starting with...

Working with variables 2

beginner

Continuing with working with variables, in this post we will go through various ways you can work with arrays and...

Working with variables 1

beginner

Understanding how to perform operations, assignments, and manipulations with variables is essential for creating dynamic and functional applications. In this...

Variables and data types

beginner

When it comes to programming in Javascript, understanding variables and data types is essential. These fundamental concepts form the building...

Installing NodeJS

beginner

## Starting out In the beginning we will cover general Javascript code (even if I will refer to it as...

Glossary

beginner

# Glossary #### `server`/`webserver` `Server` is a physical computer or system. They are usually found in clusters in what are...