Add compiler test

This commit is contained in:
Ryohei Ikegami
2015-10-27 11:50:43 +09:00
committed by Mohamed Hegazy
parent 60572bad94
commit 18cf2e490f
@@ -0,0 +1,5 @@
const nestedArray = [[[1, 2]], [[3, 4]]];
nestedArray.forEach(([[a, b]]) => {
console.log(a, b);
});