Learn the language of the web.

Recent Post

Using the useEffect() hook in React

useEffect() runs code once on initial rendering or specific rerenders.

Using Fetch with async/await

Async/await allows a Fetch request to be handled using synchronous-looking syntax.

map() vs forEach()

The map() and forEach() methods both iterate through arrays, but are not interchangeable.

We made the Feedspot top 30!

This blog has been listed #15 in the Feedspot list of JavaScript blogs

Using the useState() hook in React.js

Trigger a re-rendering of your app each time the value of a variable changes.

Using the Fetch API in React with functional components

How to use JavaScript's native Fetch API to make HTTP requests in React.

Add a new element to the DOM using JavaScript

You can insert HTML elements to the DOM dynamically using JavaScript.

Using the File System module (‘fs’) in Node.js

Running JavaScript in Node.js, you have access to the file system.

Pass data from one HTML page to another

You can make data persistent across pages by accessing the Web Storage API.

How to upload a file using the Fetch API

You can upload a file using the Fetch API as part of a FormData object or as a standalone file.