xxxxxxxxxx
37
const carb1 = {
name: "potato",
nutrition: 5,
price: 97,
kind: "sweet",
}
const carb2 = {
name: "pebbles",
nutrition: 0,
price: 3,
kind: "amazing",
}
function Carb(name, nutrition, price, kind) {
this.name = name;
this.nutrition = nutrition;
this.price = price;
this.kind = kind;
}
carb3 = new Carb("crepe", 45, 12, "delicious");
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220, 256, 0);
textSize(30);
text(carb3.name,200,200);
}