Skip to content
This repository has been archived by the owner on Jul 8, 2024. It is now read-only.

Latest commit

 

History

History
38 lines (30 loc) · 799 Bytes

README.md

File metadata and controls

38 lines (30 loc) · 799 Bytes

clase-11

enlaces de hoy

ejemplo en JavaScript que usamos hoy

let datos;

function preload() {
  datos = loadJSON("./archivo.json", cargado);
}

function setup() {
  createCanvas(400, 400);
}

function draw() {
  background(220);
}

function cargado() {
  console.log(datos.image.file_page);
}