Files

9 lines
102 B
JavaScript

function foo(a, b, c) {
let x = [];
let y = [];
while (c) {
y.push(b);
x.push(a);
}
}