You can make a synchronous HTTP request using XMLHttpRequest
with open()
and send()
methods, and setting the async
parameter to false
.
Example:
const xhr = new XMLHttpRequest();
xhr.open('GET', 'https://api.example.com', false);
xhr.send();
console.log(xhr.responseText);
Tags: basic, JavaScript, HTTP requests
URL: https://www.tiktok.com/@jsmentoring/photo/7457614380205739296