Console Debugging

Learning from AstroPlatformer

Code Runner Challenge

console-debugging

View IPYNB Source
%%js
// CODE_RUNNER: console-debugging

const state = {level:1, health:3, x:30, y:320};
console.log("State:", state);
console.log("Position:", state.x, state.y);

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