mirror of
https://github.com/github/codeql.git
synced 2026-03-06 23:56:48 +01:00
8 lines
98 B
JavaScript
8 lines
98 B
JavaScript
function defaultVal(x) {
|
|
return x+19;
|
|
}
|
|
|
|
function f(x, y = defaultVal(x)) {
|
|
return x*y;
|
|
}
|