gpt4 book ai didi

javascript - Reactjs jsx中如何写大于0的值?

转载 作者:行者123 更新时间:2023-12-05 03:30:17 24 4
gpt4 key购买 nike

Reactjs jsx中大于0怎么写?

这是我当前的代码

return (
{num > 0 ? (
console.log('greater than 0')
):(console.log('less than zero')}
)

最佳答案

 export default function App() {
const num = 2;
return (
<div>
{num > 0 ? <h1> Greater than Zero </h1> : <h1> Zero</h1>}
</div>
);
}

关于javascript - Reactjs jsx中如何写大于0的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70861207/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com