Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
の意味は何ですか:
return i ? null : "red";
?「?」の意味は何ですか?と ":"
これは三項演算です。
その構文は次のとおりです。
condition ? operation-if-true : operation-if-false
例えば
return myVariable >5 ? 'a' : 'b';
myVariable5より大きい場合は「a」を返し、そうでない場合は「b」を返します。
myVariable