vhtml icon indicating copy to clipboard operation
vhtml copied to clipboard

render nothing if the param is the number zero

Open xdbobname opened this issue 2 years ago • 0 comments

In react, the number zero will be rendered directly, rather than taken as false or null.

let items = ['one', 'two', 'three']; document.body.innerHTML = ( <div class="foo"> <h1>Hi!</h1> <p>Here is a list of {items.length} items:</p> <ul> { items.map( item => ( <li>{ 1 }</li> )) } </ul> </div> );

xdbobname avatar Oct 10 '22 05:10 xdbobname