blob: 5d5d100f5e21c2cab83534512b14bfab8eafdec9 (
plain)
1
2
3
4
5
6
7
8
9
10
|
function a() {}
function stuff() {
a(); a();
a(); a();
debugger
}
function funcWithMultipleBreakableColumns() {
const items = [1,2];for(let i=0;i<items.length;i++){items[i]=items[i]+1}
}
|