swc/ecmascript/minifier/tests/terser/compress/evaluate/unsafe_array/input.js

19 lines
332 B
JavaScript
Raw Normal View History

console.log(
[1, , 3][1],
[1, 2, 3, a] + 1,
[1, 2, 3, 4] + 1,
[1, 2, 3, a][0] + 1,
[1, 2, 3, 4][0] + 1,
[1, 2, 3, 4][6 - 5] + 1,
[1, , 3, 4][6 - 5] + 1,
[
[1, 2],
[3, 4],
][0] + 1,
[
[1, 2],
[3, 4],
][6 - 5][1] + 1,
[[1, 2], , [3, 4]][6 - 5][1] + 1
);