UNPKG

427 BJavaScriptView Raw
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.modDocs = void 0;
7var modDocs = {
8 name: 'mod',
9 category: 'Operators',
10 syntax: ['x % y', 'x mod y', 'mod(x, y)'],
11 description: 'Calculates the modulus, the remainder of an integer division.',
12 examples: ['7 % 3', '11 % 2', '10 mod 4', 'isOdd(x) = x % 2', 'isOdd(2)', 'isOdd(3)'],
13 seealso: ['divide']
14};
15exports.modDocs = modDocs;
\No newline at end of file