Source code

Revision control

Copy as Markdown

Other Tools

/* Any copyright is dedicated to the Public Domain.
"use strict";
function subtract() {
const c = 1;
const d = 2;
return c - d;
}
subtract();