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) • 449 B
JavaScript
export const largerEqDocs = {
name: 'largerEq',
category: 'Relational',
syntax: [
'x >= y',
'largerEq(x, y)'
],
description:
'Check if value x is larger or equal to y. Returns true if x is larger or equal to y, and false if not.',
examples: [
'2 >= 1+1',
'2 > 1+1',
'a = 3.2',
'b = 6-2.8',
'(a >= b)'
],
seealso: [
'equal', 'unequal', 'smallerEq', 'smaller', 'compare'
]
}