Tech Challenge
2026-08-01
🟨
Daily Tech Challenge
JavaScript
medium
Question 1 of 5
What does this code log?
Example
const a = (1, 2, 3);
let i = 0, s = '';
for (let j = 0; j < 3; j++, i += 2) {
s += i;
}
console.log(a, s);Saturday, August 1, 2026 · A new challenge drops every day