Code QuizIntermediate

Detecting Web vs Native

Spot the wrong identifier used to detect web.

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

const isWeb = Platform.OS === 'website';

export default isWeb;

Why does this web detection always fail on React Native Web?