Mode:
Duration:
1
2
3
4
5
6
7
8
document.addEventListener('DOMContentLoaded', () => {
const output = document.getElementById('output') as HTMLElement;
fetch('https://jsonplaceholder.typicode.com/todos/1')
.then(res => res.json())
.then(data => { output.textContent = JSON.stringify(data); })
.catch(err => console.error(err));
});Coding works best on desktop or with an external keyboard.