mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
8 lines
148 B
JavaScript
8 lines
148 B
JavaScript
var a = [],
|
|
b = [1],
|
|
c = [1, 2],
|
|
d = [1, , 2], // $ Alert
|
|
e = [1,],
|
|
f = [1, 2, ,], // $ Alert
|
|
g = [,1]; // $ Alert
|