Fetch and HTTP Requests
try {
const response = await fetch('https://6away.org/data.json');
const data = await response.json();
console.log(data);
} catch (error) {
console.error(error);
}Last updated
try {
const response = await fetch('https://6away.org/data.json');
const data = await response.json();
console.log(data);
} catch (error) {
console.error(error);
}Last updated