-
🥚 Analyzing Functions:
- You can analyze a function written at or near your level. This includes:
- [ ] Behavior: How would you document the function, what test cases does it pass, and how might y…
-
Although I run an elastic search instance at localhost:9200, when
served through `grunt server` it does not connect to my es cluster
```
[2016-03-10 13:25:50] Error executing request:
[2016-03-10 13:…
-
**To:**
@FishPlusOrange
**面试公司:**
微店
**面试环节:**
一面
**问题:**
假设现在有一个二维数组,如果我们要把该二维数组转成一维数组,你能想到的方法有哪些呢
-
Remove unused parts of the build steps (EX: node-dirs-to-copy.txt) and figure out if we can simply it at all
-
给定一个由整数组成的非空数组所表示的非负整数,在该数的基础上加一。
最高位数字存放在数组的首位, 数组中每个元素只存储单个数字。
你可以假设除了整数 0 之外,这个整数不会以零开头。
### 示例1
```
输入: [1,2,3]
输出: [1,2,4]
解释: 输入数组表示数字 123。
```
### JavaScript大家不容易关注的地方
```
输入…
-
## 递归 + ...
``` js
function flatten(arr, depth = -1) {
if (depth === -1) {
return [].concat(
...arr.map((v) => (Array.isArray(v) ? this.flatten(v) : v))
);
}
if (depth ==…
-
*typeof**
- `typeof`一般用来判断基本数据类型,**除了判断 null 会输出"object",其它都是正确的**
- `typeof`判断引用数据类型时,**除了判断函数会输出"function",其它都是输出"object"**
Object.prototype.toString.call() 返回 [object Xxxx] 都能判断
-
Algorithm is 65536X SHA-512.
@ukasz you recently worked with SHA-512. are you interested in this one too?
-
把你觉得有帮助的前端学习的经验分享出来:
一个🍎交换还是一个🍎,10个想法交换各自获得十种想法。
分享让你更快成长!!!!💪加油小伙伴们。
-
## ES6 等等
![](https://user-gold-cdn.xitu.io/2020/3/15/170de4be1318de5e?imageView2/0/w/1280/h/960/format/webp/ignore-error/1)
**ES6**是ECMA为JavaScript制定的第6个标准版本,相关历史可查看此章节《ES6-ECMAScript6简介》。
标准委…