Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 398 Bytes

operators_integer_subtraction.mdx

File metadata and controls

23 lines (17 loc) · 398 Bytes
idkeywordsnamesummarycategory
integer-subtraction
subtract
minus
subtraction
int
integer
-
This is the `integer subtraction` operator.
operators

This operator performs integer subtraction.

<CodeTab labels={["ReScript", "JS Output"]}>

letresult=3-2
varresult=1;

For subtracting floats see the -. operator.

close