Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumReactcontrolled vs uncontrolledSingle-choice MCQ

What does this controlled input do when the user types a character?

function Field() { const [v, setV] = useState(''); return <input value={v} />; }