AI for Frontend Developers Quiz Practice
Active Recall Drill Session
← Exit SessionQuestion 1 of 1
mediumAI for Frontend Developers
Given `response.content = [{ type: 'thinking', thinking: '...' }, { type: 'text', text: 'Done.' }]`, what does `response.content[0].text` evaluate to in a plain JS (non-TypeScript) codebase?
code
const text = response.content[0].text;