UNPKG

405 BJavaScriptView Raw
1export var equalDocs = {
2 name: 'equal',
3 category: 'Relational',
4 syntax: ['x == y', 'equal(x, y)'],
5 description: 'Check equality of two values. Returns true if the values are equal, and false if not.',
6 examples: ['2+2 == 3', '2+2 == 4', 'a = 3.2', 'b = 6-2.8', 'a == b', '50cm == 0.5m'],
7 seealso: ['unequal', 'smaller', 'larger', 'smallerEq', 'largerEq', 'compare', 'deepEqual', 'equalText']
8};
\No newline at end of file