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....
— 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....
How to format a string into a local currency in JavaScript? What’s the output? . . . . . . . . . . . . . . . ....
— 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....
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....
What happens if we add an n suffix to a regular number in JavaScript? What’s the output? . . . . . . . . . . . . ....
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....
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....
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....
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....
What’s the difference between Object.toString and Array.toString in JavaScript? What’s the output? . . . . . . . . . . . . . . . . . A regular behavior of the JavaScript function Object....