modemode

2.0.0 • Public • Published

modemode

Finds the mode of an array. Defaults to greatest number in event of ties. Optional second parameter, if set to true, will set the function to return array responses, including, if appropriate, an array of the ties.

Install

$ npm i modemode

Usage

const mode = require("modemode");
 
const array = [1,2,2,3];
mode(array);
//=> 2
 
mode(array, true);
//=> [2]
 
const secondArray = [1,1,2,2,3];
mode(secondArray);
//=> 2
 
mode(secondArray, true);
//=> [1, 2]

Package Sidebar

Install

npm i modemode

Weekly Downloads

1

Version

2.0.0

License

MIT

Unpacked Size

1.86 kB

Total Files

3

Last publish

Collaborators

  • sproutdeveloping