Code Comments
Lesson for code-comments
Code Comments
Learning from AstroPlatformer
Code Runner Challenge
code-comments
View IPYNB Source
%%js
// CODE_RUNNER: code-comments
// Load coins from storage
const saved = parseInt(localStorage.getItem("coinsCollected") || "0") || 0;
// Add one more
const total = saved + 1;
console.log("Total:", total);
Lines: 1
Characters: 0
Output
Click "Run" in code control panel to see output ...