JSX String Coercion quirks
false
, undefined
, null
are rendered to ""
NaN render to "NaN", true renders to "true"!
0 render to "0"
{ this.props.items.length && <MyComp/\> }
may incorrectly short-circuit when length=0, becomes "0"!