mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
13 lines
156 B
JavaScript
13 lines
156 B
JavaScript
new (x => x);
|
|
|
|
(function(x) {
|
|
return x+19;
|
|
})(23);
|
|
|
|
/x/;
|
|
|
|
function foo(array) {
|
|
for (let key of array) { key; }
|
|
for (let { key } of array) { key; }
|
|
}
|