November 2018
Beginner
502 pages
10h 22m
English
Let's open up the TypeScript playground and enter the following:
fetch("https://jsonplaceholder.typicode.com/posts") .then(response => response.json()) .then(data => console.log(data));
Here are some key points:
If we run the code, we should see an array of posts output to the console:

Read now
Unlock full access