JavaScript Quiz Practice
Active Recall Drill Session
← Exit SessionQuestion 1 of 1
mediumJavaScript
What logs, and when?
code
function* g() {
console.log('A');
yield 1;
}
const it = g();
console.log('before next');
it.next();Loading compiler resources...
Active Recall Drill Session
function* g() {
console.log('A');
yield 1;
}
const it = g();
console.log('before next');
it.next();