Higher order functions
As we discussed in previous post, functions are first-class citizens, which means they can be assigned to variables, passed as...
As we discussed in previous post, functions are first-class citizens, which means they can be assigned to variables, passed as...
Functions help keep your code organized and reusable. Instead of writing the same code over and over again, you can...
## For Loop The `for` loop is widely used to execute a block of code a specific number of times....
## If Statement The `if` statement is the foundation of conditional logic in Javascript. It executes a block of code...
Javascript is pretty famous for its tricky and sometimes unexpected behaviour. I am going to show some examples starting with...
Continuing with working with variables, in this post we will go through various ways you can work with arrays and...
Understanding how to perform operations, assignments, and manipulations with variables is essential for creating dynamic and functional applications. In this...
When it comes to programming in Javascript, understanding variables and data types is essential. These fundamental concepts form the building...
## Starting out In the beginning we will cover general Javascript code (even if I will refer to it as...
# Glossary #### `server`/`webserver` `Server` is a physical computer or system. They are usually found in clusters in what are...