Skip to content

Latest commit

 

History

History

8-JavaScript-API-Calling

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

JavaScript API (Application Programming Interface) Calling

JavaScript API - JavaScript API is a set of functions that are used to perform certain tasks in JavaScript.

API Calling in JavaScript - 4 way

    1. XML HTTP Request
    1. Fetch API
    1. Axios JavaScript Library
    1. jQuery Ajax

Fetch API - API using fetching data from a server

const loadData = () => {
  fetch("https://jsonplaceholder.typicode.com/posts")
    .then((response) => response.json())
    .then((data) => {
      let lists = "";
      data.map((data, index) => {
        lists += `<li>${data.title}</li>`;
      });
      document.querySelector(".container ol").innerHTML = lists;
    });
};

loadData();