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.
reason react で % 演算子を使用すると、「値 % が見つかりません」というエラーが表示されます。Reason react で使用される % を表す別の単語はありますか?
Js.log(20 % 2)
モジュラスの理由構文は「mod」です。
Js.log(20 mod 2)