mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
8 lines
124 B
JavaScript
8 lines
124 B
JavaScript
[1, 2, 3].map(function(x) x * x); // $ Alert
|
|
|
|
|
|
[1, 2, 3].map(function(x) { return x * x; });
|
|
|
|
|
|
[1, 2, 3].map((x) => x * x);
|