Posts

Showing posts from March, 2020

Understanding This, Bind, Call, and Apply in JavaScript – Tania Rascia

Understanding This, Bind, Call, and Apply in JavaScript – Tania Rascia : This article was originally written for DigitalOcean. I selected the Open Internet/Free Speech Fund to receive a donation as part of the…

Here are the most popular ways to make an HTTP request in JavaScript

Here are the most popular ways to make an HTTP request in JavaScript : JavaScript has great modules and methods to make HTTP requests that can be used to send or receive data from a server side resource. In this article, we are going to look at a few popular ways to make HTTP requests in JavaScript. Ajax Ajax is the traditional way to make an asynchronous HTTP request. Data can be sent using the HTTP POST method and received using the HTTP GET method. Let’s take a look and make a GET request. I’ll be using JSONPlaceholder, a free online REST API for developers tha