Source code

Revision control

Copy as Markdown

Other Tools

function d(t) {
if (t >= undefined) {}
}
function s() {
d(null);
}
d(3);
s();
s();