JSFiddle - React, Tailwind, and code Playground

by mehulkar

JavaScript

const x = new XMLHttpRequest();
x.onload = function() {
	console.log('hi');
}

x.open('GET', 'https://jsonplaceholder.typicode.com/todos/1', false); // async true
x.send();