We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7f9bd1 commit a3f09c3Copy full SHA for a3f09c3
tests/cases/compiler/bindingPatternInParameter01.ts
@@ -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