Code QuizIntermediate

Platform.OS Runtime Branching

Spot the case-sensitivity bug when branching on Platform.OS.

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

const topPadding = Platform.OS === 'IOS' ? 20 : StatusBar.currentHeight;

export default topPadding;

Why does topPadding never equal 20 on an iPhone?