Objects Json

Learning from AstroPlatformer

Code Runner Challenge

objects-json

View IPYNB Source
%%js
// CODE_RUNNER: objects-json

const platform = {id:"p1",x:40,y:290,width:120,color:"#4a9eff"};
console.log("Platform:", platform.id);
console.log("Size:", platform.width);
platform.visited = true;
console.log("Updated:", platform);

Lines: 1 Characters: 0
Output
Click "Run" in code control panel to see output ...