質問編集履歴

2

見出し修正 \(Set\.prototype\.keys -> Set\.prototype\.keys と Set\.prototype\.values\)

2016/07/25 01:52

投稿

think49
think49

スコア18166

test CHANGED
File without changes
test CHANGED
@@ -1,4 +1,4 @@
1
- ### Set.prototype.keys
1
+ ### Set.prototype.keys と Set.prototype.values
2
2
 
3
3
 
4
4
 

1

質問に無関係なコードを削除

2016/07/25 01:51

投稿

think49
think49

スコア18166

test CHANGED
File without changes
test CHANGED
@@ -118,18 +118,6 @@
118
118
 
119
119
  console.log(JSON.stringify(entriesArray)); // [["a","a"],["b","b"],["c","c"]]
120
120
 
121
-
122
-
123
- var keys = [];
124
-
125
- for (var key in s.keys()) {
126
-
127
- keys.push(key);
128
-
129
- }
130
-
131
- console.log(keys);
132
-
133
121
  ```
134
122
 
135
123