6 lines
48 B
JavaScript
6 lines
48 B
JavaScript
|
|
function f(x) {
|
||
|
|
x--;
|
||
|
|
return x;
|
||
|
|
}
|
||
|
|
f(10);
|