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

HTML Lists for beginners. Syntax and Styling.

— Let’s go ahead and explore new tags. — I thought we were already done with the tags. After all, we even studied the attributes. — Oh no, there are still a lot of HTML tags....

March 8, 2021 Â· 4 min Â· Coderslang Master

Beginners Guide into HTML Tables

An HTML table is an element comprised of table rows and columns, much like you’d see in an Excel spreadsheet. Tables are useful for displaying data in a tabular format, and they can be used for layout purposes as well....

November 6, 2022 Â· 5 min Â· Coderslang Master

JavaScript, synchronizing Promises with async/await

Promises are a very handy tool for organizing asynchronous code. But the human brain is much more accustomed to synchronous operations. We’d much rather prefer to do something, wait, and then continue instead of having to handle inherent complexity of asynchronous programming....

March 6, 2021 Â· 2 min Â· Coderslang Master

JSON Tutorial for JavaScript and Node.js

One of the most popular formats for exchanging data between backend and frontend is JSON which stands for JavaScript Object Notation. It is very similar to what regular JavaScript objects look like, but it also has its own quirks....

March 5, 2021 Â· 4 min Â· Coderslang Master

Node.js, Express Middleware and External Access

Great, we already have a production server and have done some tasks to better understand how it works. Now let’s take a look at middleware - one of the most important concepts of Express....

March 4, 2021 Â· 4 min Â· Coderslang Master

Create your first Node.js server with Express backend

In the last lecture, you saw the server-side analogy of the Hello, world that you wrote as your first task in VSCode. Our program was able to process the request and return a response, which was displayed by the browser....

March 3, 2021 Â· 3 min Â· Coderslang Master

How to use Promise chains in JavaScript

Asynchronous programming in JavaScript in unimaginable without Promises and Promise chains. In this tutorial you’ll learn how to create JavaScript Promises, how to handle promise chains and utilise the functions Promise.all and Promise.race. ...

May 7, 2022 Â· 5 min Â· Coderslang Master

140 HTML colors with HEX, RGB codes and names

With so many colors to choose from, it can be tough to decide which one to use for your website or blog. But with a little help from this list of 140 HTML colors, you can find the perfect color for your next project....

February 12, 2021 Â· 7 min Â· Coderslang Master

JavaScript, asynchronous programming and Promise

In this tutorial, you’ll learn what are the promises in JS, which states can the JavaScript Promise be in and how to handle asynchronous errors in JS promises. ...

February 11, 2021 Â· 4 min Â· Coderslang Master

JavaScript setInterval, how to schedule repeated execution with the delay

Similarly to setTimeout, that executes the callback function once, you can start the repeated execution of the function in JavaScript using setInterval. Starting setInterval timer In JS, setInterval has the same params as setTimeout....

February 10, 2021 Â· 2 min Â· Coderslang Master