Back to Real Objects
Code Studio · Level 7

Object Builder

Students change object properties and use a function to print a profile.

20-25 min Ages 9-12 Builder JavaScript
Code Editor

Build a profile card.

Example code
let hero = {
  name: "Nova",
  tool: "debug wand",
  level: 3
};

function showHero(character) {
  say(character.name + " carries a " + character.tool);
  say("Level " + character.level);
}

showHero(hero);
Output

Program result

Robot ready to speak your strings

Type real JavaScript, then run it.