Foundations & Tooling Quiz Practice
Active Recall Drill Session
← Exit SessionQuestion 1 of 1
hardFoundations & Tooling
What does this code output?
code
const re = /\d+/g;
console.log(re.test('abc123')); // call 1
console.log(re.test('abc123')); // call 2
console.log(re.test('abc123')); // call 3