Avatar

Community Advisor

Hi,

 

That syntax is pretty wild. The page you linked consistently says 'array' and gives an example with a simple for() iteration of a js array, so (?):

var articleList = [
  <article id="1"/>,
  <article id="2"/>,
  <article id="3"/>,
];

 

Can also try ordinary XML list:

var articleList =
  <articles>
    <article id="1"/>
    <article id="2"/>
    <article id="3"/>
  <articles>;

 

Thanks,

-Jon