明亮乌龟

文章
11
资源
1
加入时间
2年10月17天

BigInteger与BigDecimal

BigInteger:超级大的数据运算,不能用常规的加减乘除来计算,是超过long取值范围的整数,封装成BigInteger类型的对象。        BigInteger b1=new BigInteger("1246546489791324646473131654124564");        BigInteger b2=new BigInteger("4797496646979946464...

JavaScript 数组原型上的方法实现原理(Array.prototype.map/filter/slice/pop/push/shift/unshift/some/every……)mapfilterslicepoppushshiftunshiftsomeeveryreducefind

目录mapfilterslicepoppushshiftunshiftsomeeveryreducefindmapmap() 方法返回一个新数组,数组中的元素为原始数组元素调用函数处理后的值。map() 方法按照原始数组元素顺序依次处理元素。注意: map() 方法不会对空数组进行检测。注意: map() 方法不会改变原始数组。/** * map*/Array.prototype.map = function (fn) { if (typeof fn !== "function&qu