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

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

JavaScript Interview Question #45: Сurrency formatting in JS

How to format a string into a local currency in JavaScript? What’s the output? . . . . . . . . . . . . . . . ....

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

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 Interview Question #44: Number vs BigInt in JS

What happens if we add an n suffix to a regular number in JavaScript? What’s the output? . . . . . . . . . . . . ....

March 6, 2021 Â· 1 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

JavaScript Interview Question #43: Object.toString and Array.toString

What’s the difference between Object.toString and Array.toString in JavaScript? What’s the output? . . . . . . . . . . . . . . . . . A regular behavior of the JavaScript function Object....

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