└── mutator
├── copyWithin.html
├── fill.html
├── pop.html
├── push.html
├── reverse.html
├── shift.html
├── sort.html
├── splice.html
└── unshift.html
/mutator/copyWithin.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Array.prototype.copyWithin()
6 |
7 |
8 |
33 |
34 |
--------------------------------------------------------------------------------
/mutator/fill.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Array.prototype.fill()
6 |
7 |
8 |
30 |
31 |
--------------------------------------------------------------------------------
/mutator/pop.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Array.prototype.pop()
6 |
7 |
8 |
21 |
22 |
--------------------------------------------------------------------------------
/mutator/push.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Array.prototype.push()
6 |
7 |
8 |
29 |
30 |
--------------------------------------------------------------------------------
/mutator/reverse.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Array.prototype.reverse()
6 |
7 |
8 |
23 |
24 |
--------------------------------------------------------------------------------
/mutator/shift.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Array.prototype.shift()
6 |
7 |
8 |
22 |
23 |
--------------------------------------------------------------------------------
/mutator/sort.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Array.prototype.sort()
6 |
7 |
8 |
67 |
68 |
--------------------------------------------------------------------------------
/mutator/splice.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Array.prototype.splice()
6 |
7 |
8 |
24 |
25 |
--------------------------------------------------------------------------------
/mutator/unshift.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Array.prototype.unshift()
6 |
7 |
8 |
27 |
28 |
--------------------------------------------------------------------------------