前端
文章平均质量分 84
Chiangk.
这个作者很懒,什么都没留下…
展开
-
84个常用的JS代码片段
1、all如果数组所有元素满足函数条件,则返回true。调用时,如果省略第二个参数,则默认传递布尔值。const all = (arr, fn = Boolean) => arr.every(fn);all([4, 2, 3], x => x > 1); // trueall([1, 2, 3]); // true2、allEqual判断数组中的元素是否都相等const allEqual = arr => arr.every(val => val === arr[转载 2021-03-15 10:06:55 · 179 阅读 · 0 评论 -
Openlayers 常用实例
#openlayers常用实例http://openlayers.org/en/master/examples/epsg-4326.html – 标尺http://openlayers.org/en/master/examples/export-map.html – 截图http://openlayers.org/en/master/examples/export-pdf.html – 导出...转载 2019-09-28 13:33:09 · 1528 阅读 · 1 评论