Stack Overflow Developer Survey 2019
.NET Core Is 'Most Loved' Framework in Stack Overflow Survey -- Visual Studio Magazine
await fetch('https://jsonplaceholder.typicode.com/posts').then(r => r.json())and to make result data nicely formatted as a table:
await fetch('https://jsonplaceholder.typicode.com/posts').then(r => r.json()).then(console.table)
// an array of arrays
var people = [["John", "Smith"], ["Jane", "Doe"], ["Emily", "Jones"]]
console.table(people);
console.table([
{
first: 'René',
last: 'Magritte',
},
{
first: 'Chaim',
last: 'Soutine',
birthday: '18930113',
},
{
first: 'Henri',
last: 'Matisse',
}
])
npm install -g create-react-app create-react-app my-app --typescript