mirror of
https://github.com/github/codeql.git
synced 2026-01-01 00:27:24 +01:00
9 lines
133 B
JavaScript
9 lines
133 B
JavaScript
// NOT OK
|
|
[1, 2, 3].map(function(x) x * x);
|
|
|
|
// OK
|
|
[1, 2, 3].map(function(x) { return x * x; });
|
|
|
|
// OK
|
|
[1, 2, 3].map((x) => x * x);
|