2018-01-09 15:36:42 +01:00

7 lines
61 B
JavaScript

const c = 17;
let a = 0;
function f() {
return ++c+--a;
}