mirror of
https://github.com/github/codeql.git
synced 2026-02-16 15:03:41 +01:00
11 lines
172 B
JavaScript
11 lines
172 B
JavaScript
{
|
|
if (arguments.length == 0)
|
|
23;
|
|
if (arguments.length % 2 != 0)
|
|
42;
|
|
console.log(arguments[0]);
|
|
arguments[0]--;
|
|
arguments[1] += 19;
|
|
arguments[0] * arguments[1];
|
|
}
|