Easy
What is the outcome of executing the following React code (using Hooks)?
import React, { useState, useEffect } from 'react';
function Example() {
  const [count, setCount] = useState(0);
  useEffect(() => {
    document.title = `You clicked ${count} times`;
    return () => {
      document.title = 'React App';
    };
  }, [count]);
  return (
    <div>
      <p>You clicked {count} times</p>
      <button onClick={() => setCount(count + 1)}>
        Click here
      </button>
    </div>
  );
}
Author: Vincent  CotroStatus: PublishedQuestion passed 2176 times
Edit
10
Community EvaluationsNo one has reviewed this question yet, be the first!
10
Use useCallback to optimize rendering in React34
Write the non-JSX equivalent of the following code:14
Save the state used to display the selected page in a React component.18
Call a function on the first render of a React component26
Write the missing code to render the children of the UserProfile component.10
Write a React component that displays the sum of two numbers17
Write a React component as a function