rsnext/test/integration/optional-chaining-nullish-coalescing/pages/optional-chaining.js
JJ Kasper 963d598dc1
Add tests for optional chaining and nullish coalescing (#9665)
* Add tests for optional chaining and nullish coalescing

* Add integration tests
2019-12-08 12:38:22 -06:00

9 lines
198 B
JavaScript

let hello
let another = { thing: 1 }
export default () => (
<>
<p>result1: {hello?.world ? 'something' : 'nothing'}</p>
<p>result2: {another?.thing ? 'something' : 'nothing'}</p>
</>
)