Skip to content

Commit

Permalink
Update test refs
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Oct 31, 2022
1 parent 1e92d0f commit 08bb08a
Showing 1 changed file with 14 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,19 @@
class Foo {
bar() {
for (const f of [6, 5])
for (let r of [4, 3]) for (var o of [2, 1]) console.log(f, r, o);
for (const o of [
6,
5
]){
for (let f of [
4,
3
]){
for (var r of [
2,
1
])console.log(o, f, r);
}
}
}
}
new Foo().bar();

0 comments on commit 08bb08a

Please sign in to comment.