上一页 1 2 3 4 5 6 7 ··· 12 下一页
摘要: ``` var crypto = require('crypto'); var fs = require('fs'); //从文件创建一个可读流 var stream = fs.createReadStream('./wu.jpg'); var fsHash = crypto.createHash('md5'); stream.on('data', function(d) { fsHash.upd 阅读全文
posted @ 2019-11-19 20:40 樱风凛 阅读(378) 评论(0) 推荐(0) 编辑
摘要: 递归 var arr = [ {"id":1,"parent_id":0,"name":"Foods"}, {"id":2,"parent_id":1,"name":"Fruits"}, {"id":3,"parent_id":2,"name":"apple"}, {"id":4,"parent_i 阅读全文
posted @ 2019-11-19 20:34 樱风凛 阅读(378) 评论(0) 推荐(0) 编辑
摘要: class LazyManClass { constructor(name) { this.taskList = []; this.name = name; console.log( ); setTimeout(() = { this.next(); }, 0); } eat (name) { va 阅读全文
posted @ 2019-10-11 13:49 樱风凛 阅读(517) 评论(0) 推荐(0) 编辑
摘要: ``` // html hello world //输出一个数组 const result = [{tag:'div',num: 100}, {tag: 'div',num: 80}]; ``` ``` Document ``` 阅读全文
posted @ 2019-09-29 16:32 樱风凛 阅读(588) 评论(0) 推荐(0) 编辑
摘要: ``` // 数组扁平和去重 var arr = [[1,2,2],[3,4,5,5],[6,7,7,9,[11,12,[12,13,[14]]]],10]; function hello (arr) { let res = [] for (let i = 0; i 阅读全文
posted @ 2019-09-16 13:32 樱风凛 阅读(146) 评论(0) 推荐(0) 编辑
摘要: https://leetcode cn.com/problems/3sum 阅读全文
posted @ 2019-09-08 19:46 樱风凛 阅读(95) 评论(0) 推荐(0) 编辑
摘要: https://leetcode cn.com/problems/two sum/ 暴力,复杂度n的平方 var twoSum = function(nums, target) { let arr = [] for (let i = 0; i 阅读全文
posted @ 2019-09-08 19:02 樱风凛 阅读(127) 评论(0) 推荐(0) 编辑
摘要: ``` function Event() { this._events = {}; } Event.prototype.on = function(type, fn) { if (!this._events[type]) { this._events[type] = [] } this._events[type].push(fn); } Event.prototype.off = function 阅读全文
posted @ 2019-09-03 00:58 樱风凛 阅读(753) 评论(0) 推荐(0) 编辑
摘要: 左侧固定右侧自适应 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta 阅读全文
posted @ 2019-09-02 19:41 樱风凛 阅读(1600) 评论(0) 推荐(0) 编辑
摘要: this的绑定规则有4种 1. 默认绑定 2. 隐性绑定 3. 显性绑定 4. new绑定 this绑定优先级 new 绑定 显性绑定 隐性绑定 默认绑定 1.如果函数被new 修饰 this绑定的是新创建的对象,例:var bar = new foo(); 函数 foo 中的 this 就是一个叫 阅读全文
posted @ 2019-08-30 14:06 樱风凛 阅读(242) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 12 下一页