This is a test notebook for the IJavascript kernel.
In [ ]:
// This is a bit of JavaScript code.
// Press Shift+Enter while your focus is here to run this code and see the result.
var i = 0;
while (i < 22) {
console.log(`Current: ${i}`);
i++;
}