In React Native Example Code, you'll find at some files the type
statement, which encapsulates 4 properties (I'd like to guess), where the last two ones are suffixed with question marks.
type MapRegion = {
latitude: number,
longitude: number,
latitudeDelta?: number,
^============ What are these...
longitudeDelta?: number,
}; ^===========...question marks for?