🚀 CYBER WEEK SALE: 50% OFF on JavaScript Fundamentals 💪

Unary Operators in JavaScript

Back in the JavaScript Operators lesson, you’ve been introduced to the concepts of operators and how they are working, and the common types of operators. Today, you’re going to learn another type of JavaScript operator that hasn’t been mention in the earlier lesson, and that is a unary operator....

October 20, 2021 · 8 min · Coderslang Master

JavaScript Arrays

Up to this point, you have been using variables for a while to store the values. Variables make it possible to keep a collection of data that you will use later in the program....

October 19, 2021 · 4 min · Coderslang Master

JavaScript Objects

In the real world, we have objects everywhere. A car is an object. It has properties like brand name, year of production, and color. In the world of programming, we also have objects....

October 18, 2021 · 5 min · Coderslang Master

JavaScript If Statement

The if statement is the main programming concept that allows you to run the code if the specified conditions are true. It is also known as the Conditional Statement. You will learn two common forms of JavaScript if Statement, and they are:...

October 17, 2021 · 4 min · Coderslang Master

JavaScript Boolean Type

In everyday programming, you may come across questions that need answers like: Yes or No On or Off True or False And pretty much anything else that has positive or negative answers....

October 16, 2021 · 4 min · Coderslang Master

JavaScript Operators

You know how a calculator needs operators like add, subtract, multiply, and divide to do basic calculations, right? JavaScript also has operators, and we use them to perform basic programming operations....

October 15, 2021 · 5 min · Coderslang Master

Strings and Numbers in JavaScript

JavaScript’s variables can hold values of different types. Each JavaScript value, however, has a strictly defined type. Let’s start with the differences between string and numbers in JS. Strings All text information in JavaScript is considered to be a string....

May 17, 2021 · 4 min · Coderslang Master

JavaScript Variables

Variable — is one of the key terms in programming. Luckily it’s not that complicated to learn. You can imagine a variable as a spreadsheet cell or a box in the warehouse....

May 16, 2021 · 3 min · Coderslang Master

Learn JavaScript from scratch

Hey! If you want to learn how to code, but don’t know where to start, I’ll help you. We will start learning from the very beginning. Let’s figure out what a function is, how a string differs from a number, how to create conditionals and loops....

March 12, 2021 · 3 min · Coderslang Master