Question from the React ⚛️ test

Write a React component that displays the number 2

Hard

What will this component display?

const MyComponent=()=>{
    const[index, setIndex]= useState(1);
    setIndex(2);
    return<div>{index}</div>;
}
Author: Vincent CotroStatus: PublishedQuestion passed 3771 times
Edit
6
Community EvaluationsNo one has reviewed this question yet, be the first!