fetch

by Artem Borovikov

JavaScript

fetch('https://jsonplaceholder.typicode.com/todos/1')
  .then(function(response) {
    if(response.ok == true && response.status == 200) {
    	return response.json();
    }
  })
  .then(function(data) {
  	console.log(data);
  })