回答編集履歴
2
誤記修正
test
CHANGED
@@ -102,7 +102,7 @@
|
|
102
102
|
|
103
103
|
```GAS
|
104
104
|
|
105
|
-
console.log(entries[0][
|
105
|
+
console.log(entries[0]['title']);
|
106
106
|
|
107
107
|
console.log(entries[0]['link']);
|
108
108
|
|
1
追記1
test
CHANGED
@@ -93,3 +93,21 @@
|
|
93
93
|
|
94
94
|
|
95
95
|
こんなのでいいのかなぁ…でも、なんか出来てる気がするんだけどどうなんでしょう。
|
96
|
+
|
97
|
+
|
98
|
+
|
99
|
+
(追記1)
|
100
|
+
|
101
|
+
entriesの1番目を習得するコード
|
102
|
+
|
103
|
+
```GAS
|
104
|
+
|
105
|
+
console.log(entries[0][['title']);
|
106
|
+
|
107
|
+
console.log(entries[0]['link']);
|
108
|
+
|
109
|
+
console.log(entries[0]['pubDate']);
|
110
|
+
|
111
|
+
|
112
|
+
|
113
|
+
```
|