Strings
Lesson for strings
Strings
Learning from AstroPlatformer
Code Runner Challenge
strings
View IPYNB Source
%%js
// CODE_RUNNER: strings
const game = "AstroPlatformer";
const level = "Crater";
console.log("Game:", game);
console.log("Level:", level);
const intro = game + ": " + level;
console.log("Intro:", intro);
Lines: 1
Characters: 0
Output
Click "Run" in code control panel to see output ...