ES6 Console - try JavaScript compilers

PHOTO EMBED

Sat Oct 24 2020 18:15:17 GMT+0000 (Coordinated Universal Time)

Saved by @jchr #undefined

​fetch('https://jsonplaceholder.typicode.com/todos/1')
      .then(resultado => {
  	return resultado.json();
})
      .then(resultadoFinal => {
  	console.log(resultadoFinal)
});


content_copyCOPY

https://es6console.com/