回答編集履歴

2

Array.prototype.slice

2018/01/24 23:42

投稿

think49
think49

スコア18166

test CHANGED
@@ -1,3 +1,7 @@
1
+ ### Spread要素
2
+
3
+
4
+
1
5
  Spread要素があります(IE11は使用不可)。
2
6
 
3
7
 
@@ -44,4 +48,20 @@
44
48
 
45
49
 
46
50
 
51
+ ### Array.prototype.slice
52
+
53
+
54
+
55
+ IE11用コード(未検証)。
56
+
57
+
58
+
59
+ ```JavaScript
60
+
61
+ fn1.apply(null, Array.prototype.slice.call(arguments, 3));
62
+
63
+ ```
64
+
65
+
66
+
47
67
  Re: kouichi_am さん

1

Spread要素

2018/01/24 23:42

投稿

think49
think49

スコア18166

test CHANGED
@@ -1,4 +1,10 @@
1
+ Spread要素があります(IE11は使用不可)。
2
+
3
+
4
+
1
5
  - [Spread要素が実装された - JS.next](http://js-next.hatenablog.com/entry/2015/06/24/100705)
6
+
7
+ - [spread (...) operator - ECMAScript 6 compatibility table](http://kangax.github.io/compat-table/es6/#test-spread_(...)_operator)
2
8
 
3
9
 
4
10