✏️ Explanatory Question
In synchronous AJAX requests, the browser halts its execution until the request is complete. This means that the user interface becomes unresponsive during the request.
var xhr = new XMLHttpRequest();
xhr.open('GET', 'example-url', false); // false for synchronous
xhr.send();
// Process the response