Source code

Revision control

Copy as Markdown

Other Tools

function f() {
var x = 3;
var y = 1.2;
var z;
y = --z;
x = z++;
}
f();