Source code

Revision control

Copy as Markdown

Other Tools

/* Any copyright is dedicated to the Public Domain.
"use strict";
// Random method on which a breakpoint will be set from the DevTools UI in the
// test.
window.testMethod = function () {
const a = 1;
const b = 2;
return a + b;
};