AI for Frontend Developers Quiz Practice
Active Recall Drill Session
← Exit SessionQuestion 1 of 1
mediumAI for Frontend Developers
Given the code below, what does `rendered` contain after all three deltas ('The ', 'quick ', 'fox.') have been processed?
code
let rendered = '';
for (const delta of ['The ', 'quick ', 'fox.']) {
rendered = delta;
}