idkeywordsnamesummarycategorymodmodmodulooperatormodThis is the `modulo` operator.operatorsThe mod operator calculates the modulo (remainder after division) of two integers.Example<CodeTab labels={["ReScript", "JS Output"]}>letresult=mod(7, 4)varresult=3;