JavaScript API - JavaScript API is a set of functions that are used to perform certain tasks in JavaScript.
-
- XML HTTP Request
-
- Fetch API
-
- Axios JavaScript Library
-
- jQuery Ajax
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();