Source code
Revision control
Copy as Markdown
Other Tools
export default function root() {
let one = 1;
class Thing {
one() {
console.log("pause here");
}
}
class Another {
method() {
let two = 2;
const three = 3;
console.log("pause here", Another, one, Thing, root);
}
}
new Another().method();
new Thing().one();
}