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

Latest commit

 

History

History

clase-11

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

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);
}