Add compiler test

This commit is contained in:
Ryohei Ikegami
2015-10-27 11:50:43 +09:00
parent f7f9bd1d24
commit a3f09c343b

View File

@@ -0,0 +1,5 @@
const nestedArray = [[[1, 2]], [[3, 4]]];
nestedArray.forEach(([[a, b]]) => {
console.log(a, b);
});