1fetch('https://jsonplaceholder.typicode.com/todos/1')
2 .then(response => response.json())
3 .then(json => console.log(json))
1fetch('https://jsonplaceholder.typicode.com/todos/1')
2 .then(response => response.json())
3 .then(json => console.log(json))
4fetch('https://jsonplaceholder.typicode.com/todos/1')
5 .then(response => response.json())
6 .then(json => console.log(json))