Skip to content

Commit a3f09c3

Browse files
committed
Add compiler test
1 parent f7f9bd1 commit a3f09c3

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
const nestedArray = [[[1, 2]], [[3, 4]]];
2+
3+
nestedArray.forEach(([[a, b]]) => {
4+
console.log(a, b);
5+
});

0 commit comments

Comments
 (0)