- 博客(2)
- 收藏
- 关注
原创 javascript函数式编程基础
highlight: a11y-dark theme: scrolls-light 函数式编程概念 程序的本质是根据输入得到输出。x -> f(联系、映射) -> y,y=f(x)。 函数是一等公民,就是一个普通的对象。它能作为另一个函数的参数,也能作为一个函数的返回值,还可以当作变量存储 // 非函数 const num1 = 2; const num2 = 3; const sum = num1 + num2; // console.log(sum) // 函数式(函.
2021-10-14 07:00:00 91
原创 手写promise的原理及思路
highlight: a11y-dark theme: healer-readable 手写promise思路 先逐步分析,一步一步的写代码,最终有完整示例 1.promise是一个类,参数是一个函数执行器,且会立即执行。函数执行器接受两个参数,一个成功回调resolve,一个失败回调reject class MyPromise { constructor(executor) { executor(this.resolve.bind(this), this.reject.bind(.
2021-10-12 11:07:19 1699
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人