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

How to Set Up Coderslang Extension for Visual Studio Code

Install Node.js and npm You need to go to the official site and download the latest stable version on the main page. After downloading the installer, you should run and install Node....

October 24, 2021 · 2 min · Coderslang Master

The meaning of CRUD in programming

CRUD stands for Create, Read, Update, and Delete. CRUD is the basic operations of the database management system (DBMS), and is used when you want to create, view, edit, or remove the data inside the application’s database....

May 7, 2022 · 3 min · Coderslang Master

How Long it Takes to Learn JavaScript

One of the most common questions beginner programmers ask is how long it takes to learn JavaScript. You want to know how long it will take you before you start building JavaScript projects and get a job in software development....

December 16, 2021 · 8 min · Coderslang Master

How long does it take to learn to code?

In one word, FOREVER! You might think I am exaggerating, but learning to code is an iterative and lifelong process. Every day new technologies are being developed to optimize old workflows or introduce new and more efficient workflows....

May 21, 2021 · 4 min · Coderslang Master

How to concatenate JavaScript array using join

JavaScript join function is built in to every JS Array. It’s very useful to join the elements of the JavaScript array and convert it into a string. Here’s the basic syntax:...

May 17, 2021 · 1 min · Coderslang Master

How to destructure an array in JavaScript

JavaScript provides a very handy possibility to destructure any array and give custom names to the variables in it. Let’s assume we start with a simple array of numbers: const numbers = [1, 2, 3, 4, 5]; To get the first 2 elements from this array, we can use the destructuring assignment....

May 15, 2021 · 1 min · Coderslang Master

How to wait for all Promises to resolve in JavaScript

So you have a bunch of Promises, and you want to proceed only when all of them are resolved. In JavaScript there are 2 main approaches to solving this. ...

May 14, 2021 · 2 min · Coderslang Master

HTML Text Properties

HTML text has a couple of properties. When these properties change, the looks and feel of the website changes too. For example, here I’ve already told you how to change the color of the text in HTML....

March 11, 2021 · 4 min · Coderslang Master

CSS Identifiers and Classes

— How we select elements for applying styles is called a selector. Until now, we have selected elements by tag name. — Well, yes, we specified, for example, h1 or p and then listed CSS properties....

March 10, 2021 · 4 min · Coderslang Master

HTML links and attributes

— Hey there! It looks like you’ve already figured out the basic HTML elements. — Well, I solved all practical tasks and realized that each tag has its own capabilities....

March 9, 2021 · 7 min · Coderslang Master