mathjs
Version:
Math.js is an extensive math library for JavaScript and Node.js. It features a flexible expression parser with support for symbolic computation, comes with a large set of built-in functions and constants, and offers an integrated solution to work with dif
21 lines (20 loc) • 373 B
JavaScript
export const modDocs = {
name: 'mod',
category: 'Operators',
syntax: [
'x % y',
'x mod y',
'mod(x, y)'
],
description:
'Calculates the modulus, the remainder of an integer division.',
examples: [
'7 % 3',
'11 % 2',
'10 mod 4',
'isOdd(x) = x % 2',
'isOdd(2)',
'isOdd(3)'
],
seealso: ['divide']
}