remove-array-duplicates-ifrst
v1.0.2
Published
publish first npm packgae
Downloads
2
Maintainers
Readme
Here IS first npm packake from me. Installtion ...... npm i remove-array-duplicates-ifrst
Usage .... requrie module using
const makeArrUniqe = require("emove-array-duplicates-ifrst")
const mixedArr = [1,2,4,23,2,3]
const uniqeNumberArr = makeArrUniqe(mixedArr)
Result ... [1,2,23,3]