Explore Library
Code QuizIntermediate

Hardware Back Button Handling

Find the bug in intercepting the Android hardware back button.

Codejavascript
import { BackHandler } from 'react-native';

useEffect(() => {
  BackHandler.addEventListener('hardwareBackPress', () => {
    doSomething();
  });
}, []);

What is the bug in this code?