xxxxxxxxxx
17
let people;
function preload() {
// Get the most recent earthquake in the database
let url =
'https://people.googleapis.com/$discovery/rest?version=v1';
people = loadJSON(url);
}
function setup() {
noLoop();
}
function draw() {
background(200);
console.log(people)
}