smallest-element
v1.0.0
Published
A JavaScript Package for finding the smallest element of an array.
Downloads
1
Readme
smallest-element
A JavaScript Package for finding the smallest element of an array.
Features
npm
Install
npm install --save smallest-element
Scripts Tag
For Development
<script src="https://rawgit.com/Prosen-Ghosh/smallest-element/master/smallest.js"></script>
For Production
<script src="https://cdn.rawgit.com/Prosen-Ghosh/smallest-element/9406abf2/smallest.js"></script>
Usage
const small = require('smallest-element');
small([1,2,3,-10]);
//=> -10
small([1,2,3,-10,{}]);
//=> -10
small([1,2,3,-10,-100,[]]);
//=> -100
small([]);
//=> null
small(); //withour parameter this function will throw a type error
//=> TypeError: smallest() expects an array parameter
Author
Prosen Ghosh [email protected] (https://bd.linkedin.com/in/prosen-ghosh-baba9aa8)
License
- MIT