Question from the React ⚛️ test

Write a React component that displays the number 2

Archived

What will this component display?

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