小鱼

Results 49 comments of 小鱼

丑的一起看: ``` js /** * // This is the interface that allows for creating nested lists. * // You should not implement it, or speculate about its implementation * function...

上次同事要求写的必须自黑的代码,目标不是代码,而是我喜欢自己写而不是 `npm install leftpad --save`: ``` js function leftPad(value, length, char) { var ret = ''; char = String(char); while(length--) ret += char; return ret + value; } function padLeft(value,...

分享一个我的思路: ``` js 'use strict' var arr = [1,2,3,4,5,6,7,8,9,0]; var group = [[],[],[],[]]; (function split(arr, group) { var size = group.length; // 分多少组 var length = arr.length; // 人数总长度 //...

@rccoder 嗯,如果需要有顺序排列的话,后面再重新「洗牌」就可以了: ``` js group.sort(() => Math.random() * 2 - 1) ```

@Leopoldthecoder get √,我修改一波

@showonne XD,在公司才能登录,下周改改

这个得好好想想,似乎还挺麻烦的。能想到的是,每次发布新版本的时候,给它的 docs 文件做次 diff(纯英文的上一版下一版),然后修改。

Hi @ignasbernotas , I'm planning to update it to a ES6 version and would love to add some features like `insert image` and `insert table`. But i cant guarantee when...

@l3wi PR is always welcome