AI Engineering Quiz Practice
Active Recall Drill Session
← Exit SessionQuestion 1 of 1
mediumAI Engineering
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;
}