I want to avoid typing in
fontWeight = fontWeight ?? parentFontWeight;
and instead use
fontWeight ??= parentFontWeight;
How do I enable the ??= operator in babel used in Expo?
??=