Q:

json placholder

let todos = [];

fetch('https://jsonplaceholder.typicode.com/todos?_limit=5')
      .then(res => res.json())
      .then(data => todos = data)
      .catch(err => console.log(err));
2
fetch('https://jsonplaceholder.typicode.com/todos/1')
  .then(response => response.json())
  .then(json => console.log(json))
4

New to Communities?

Join the community