mirror of
https://github.com/facebook/react.git
synced 2026-02-26 04:14:59 +00:00
6 lines
98 B
JavaScript
6 lines
98 B
JavaScript
function ternary(props) {
|
|
let x = 0;
|
|
const y = props.a ? (x = 1) : (x = 2);
|
|
return x + y;
|
|
}
|