React | React Forms | Question 6

Last Updated :
Discuss
Comments

Is this an example of two-way binding in React?

JavaScript
<input value={inputValue} onChange={(e) => setInputValue(e.target.value)} />


Yes, it is two-way binding

No, it is one-way binding

No, it is not binding

No, setInputValue is incorrect

Share your thoughts in the comments