Source code

Revision control

Copy as Markdown

Other Tools

/* Any copyright is dedicated to the Public Domain.
"use strict";
// The console test checks that this message shows up in the remote toolbox.
// eslint-disable-next-line no-console
console.log("script loaded");
function clickMe() {
const a = 1; // BREAKPOINT
const b = 2;
return a + b;
}
document.getElementById("click-me").addEventListener("click", clickMe);