Re: [w3c/manifest] Add IDL section and define IDL for all the members (#613)

marcoscaceres commented on this pull request.



>            </li>
-          <li>If <var>unprocessed applications</var> is an <a>array</a>, then:
+          <li>For <var>V</var> in <var>A</var>:

That translates nicely to:

```js
for(const relatedApp of manifest.related_applications) {... do stuff ... }
```

Or, better:

```js
manifest.related_applications.forEach(relatedApp => ... do stuff... )
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/manifest/pull/613#discussion_r142338285

Received on Tuesday, 3 October 2017 08:22:00 UTC