文章分类 -  Javascript高级特性/进阶

ES6 In Depth Articles
摘要:https://hacks.mozilla.org/category/es6-in-depth/ 阅读全文
posted @ 2020-12-18 18:16 bowen_tong
JAVASCRIPT 缓存基本原理
摘要:https://www.cnblogs.com/3body/p/6497634.html // 这是个闭包函数,接收一个函数,可以把接收的函数转换成具有缓存能力的函数 var memoize = function(f) { // 使用一个 cache 对象来进行缓存 var cache = {}; 阅读全文
posted @ 2020-12-10 13:50 bowen_tong
Confused. don’t understand - [].concat.apply([],arr)
摘要:https://forum.freecodecamp.org/t/confused-dont-understand-concat-apply-arr/15180 Hi, I’m on one of the algorithm challenges - “Sorted Union”, where on 阅读全文
posted @ 2020-11-12 11:10 bowen_tong