Calculate

Calculate

  • Docs
  • Help
  • Blog

›Math

Getting Started

  • Installation
  • Updating Calculate

Math

  • Sum
  • Difference
  • Product
  • Quotient
  • Remainder
  • Power
  • Square
  • Cube
  • Factorial

Statistics

  • Mean
  • Median
  • Mode
  • Range

Difference

Gets the difference of given numbers.

Syntax

difference(a: number, b: number, ...args): number

Note: It subtracts number from left to right. For example, a - b - c - ... and so on.

Parameters

a: number - First given number.

b: number - Second given number.

...args: number[] - The rest of the given numbers

Can be given an infinite number of parameters.

Returns

number - The resulting difference.

Error

Throws an error if the length of arguments is less than 2.

Import

import { difference } from '@princedev/calculate';

Examples

Basic usage with two given numbers.

const result = difference(12,24);

result would be -12

Subtracting multiple given nnumbers.

const result = difference(24,12,8);

result would be 4 as it is evaluated as 24 - 12 - 8.

If you're using an array, you can use the spread operator like this

const result = difference(...[24,12,8]);

result would be 4

Last updated on 5/6/2020 by Prince Neil Cedrick Castro
← SumProduct →
  • Syntax
    • Parameters
    • Returns
    • Error
  • Import
  • Examples
Calculate
Docs
Getting StartedGuides
Package
NPMGitHubStar
More
HelpBlog
aws.cedi@gmail.com
Copyright © 2020 Calculate