proposal slice notation 源码
切片符号 该存储库包含有关向JavaScript添加切片符号语法的建议。 目前这是第一阶段。 介绍 切片符号为Array.prototype,TypedArray.prototype等上存在的各种切片方法提供了符合人体工程学的选择。 const arr = [ 'a' , 'b' , 'c' , 'd' ] ; arr [ 1 : 3 ] ; // → ['b', 'c'] arr . slice ( 1 , 3 ) ; // → ['b', 'c'] 此表示法可用于对诸如Array和TypedArray之类的原语进行切片操作。 动机 const arr = [ 'a' , 'b' , 'c' , 'd' ] ; arr . slice ( 3 ) ; // → ['a', 'b', 'c'] or ['d'] ? 在上面的示例中,尚不清楚新创建的数组是从0到3还是从3到len(ar
文件列表
proposal-slice-notation-master.zip
(预估有个8文件)
proposal-slice-notation-master
package.json
449B
index.html
80KB
LICENSE
1KB
.gitignore
661B
spec.emu
10KB
.npmrc
19B
README.md
10KB
.gitattributes
87B
暂无评论