xxxxxxxxxx
25
function setup() {
createCanvas(400, 400);
//
let aidan= {
lastName: "nelson",
location: "brooklyn"
}
let myObj = {
text: "hello there",
x: 12,
y: 98,
z: 'zebra',
}
console.log(aidan.lastName);
console.log(aidan["lastName"]);
// data[12].mtaStations.repairStatus
}