input.js (240B)
1 // Babel will optimize this for..of because it call tell the value is an array. 2 export default function root() { 3 console.log("pause here"); 4 5 for (const val of [1, 2]) { 6 console.log("pause again", val); 7 } 8 9 console.log("done"); 10 }