Skip to content

Latest commit

 

History

History
360 lines (194 loc) · 5.92 KB

DOCUMENTATION.md

File metadata and controls

360 lines (194 loc) · 5.92 KB

Variadic.js

Table of Contents

variadic

absoluteValue

This function converts all numbers to a positive number

Parameters

  • params ...any One or more parameters.

Meta

  • author: tdnelson2

average

This function caculates the average of the numerical parameters

Parameters

  • params ...any One or more parameters.

Meta

  • author: jmbothe

factorial

This function caculates the factorial of each numerical parameter

Parameters

  • params ...any One or more parameters.

Meta

  • author: devNoiseConsulting

isAscending

This function evaluates whether the parameters are in ascending order

Parameters

  • params ...any One or more parameters.

Meta

  • author: scottwestover

isComposit

This function evaluates whether all numerical parameters are composit

Parameters

  • params ...any One or more parameters.

Meta

  • author: tdnelson2

isDecimal

This function evaluates whether all the parameters are decimal values

Parameters

  • params ...any One or more parameters.

Meta

  • author: D1esel-Dev

isDescending

This function evaluates whether the parameters are in ascending order

Parameters

  • params ...any One or more parameters.

Meta

  • author: jhowardjr

isEmpty

This function evaluates if all the parameters are empty

Parameters

  • params ...any One or more parameters.

Meta

  • author: jhowardjr

isEqual

This function evaluates whether all parameters are equal

Parameters

  • params ...any One or more parameters.

Meta

  • author: jhowardjr

isEven

This function evaluates whether all parameters are even

Parameters

  • params ...any One or more parameters.

Meta

  • author: scottwestover

isIntegers

This function evaluates whether all parameters are integers

Parameters

  • params ...any One or more parameters.

Meta

  • author: someyoungideas

isNegativeInteger

This function evaluates whether all integer parameters are negative

Parameters

  • params ...any One or more parameters.

Meta

  • author: khusbuchandra

isNegativeNumber

This function evaluates whether all numerical parameters are negative

Parameters

  • params ...any One or more parameters.

Meta

  • author: khusbuchandra

isOdd

This function evaluates whether all numerical parameters are odd

Parameters

  • params ...any One or more parameters.

Meta

  • author: khusbuchandra

isPositiveInteger

This function evaluates whether all integer parameters are positive

Parameters

  • params ...any One or more parameters.

Meta

  • author: scottwestover

isPositiveNumber

This function evaluates whether all numerical parameters are positive

Parameters

  • params ...any One or more parameters.

Meta

  • author: khusbuchandra

isPrime

This function evaluates whether all numerical parameters are prime

Parameters

  • params ...any One or more parameters.

Meta

  • author: jmbothe

maximum

This function finds the maximum parameter value

Parameters

  • params ...any One or more parameters.

Meta

  • author: jensenmeh

median

This function finds the median parameter value

Parameters

  • params ...any One or more parameters.

Meta

  • author: jmbothe

minimum

This function finds the minimum parameter value

Parameters

  • params ...any One or more parameters.

Meta

  • author: jensenmeh

mode

This function finds the mode of the parameter values

Parameters

  • params ...any One or more parameters.

Meta

  • author: jmbothe

populationStandardDeviation

This function calculates the population standard deviation

Parameters

  • params ...any One or more parameters.

Meta

  • author: devNoiseConsulting

populationVariance

This function calculates the variance

Parameters

  • params ...any One or more parameters.

Meta

  • author: devNoiseConsulting

range

This function returns the difference between the largest and smallest values

Parameters

  • params ...any One or more parameters.

Meta

  • author: tdnelson2

sampleStandardDeviation

This function calculates the sample standard deviation

Parameters

  • params ...any One or more parameters.

Meta

  • author: devNoiseConsulting

sampleVariance

This function calculates the sample variance

Parameters

  • params ...any One or more parameters.

Meta

  • author: devNoiseConsulting

sum

This function calculates the sum of the parameters

Parameters

  • params ...any One or more parameters.

Meta

  • author: jmbothe