UNPKG

monody-array

Version:

一款世界级流行的数组拓展插件

23 lines (16 loc) 562 B
# 1.hmarray 介绍 - 1.1 这是一个很牛逼的包 - 1.2 技术亮点 - 它没有修改原生的数组,而是在原生的数组中添加额外的新功能 - 也就是说,使用 hmarray 您完全不用担心对您现在的代码产生任何影响。 - 它只是拓展,不是替换。 # 2.hmarray 官方 api ```javascript //导包 const HMArray = require("./index.js"); //创建自定义数组 let arr = new HMArray(20, 55, 60, 80, 99, 100); console.log(arr.reverse()); console.log(arr.max()); console.log(arr.min()); ```