- From: Marcos Cáceres <notifications@github.com>
- Date: Tue, 03 Oct 2017 08:21:32 +0000 (UTC)
- To: w3c/manifest <manifest@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Tuesday, 3 October 2017 08:22:00 UTC
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