Re: plain text math notation

On Fri, 2016-09-23 at 11:03 -0400, Robin Berjon wrote:
[...]
> 
>   function listPeople (people = [], listType) {
>     return (
>       <ul className={listType}>
>         {
>           people.map(p => <li>{p.name}</li>)
>         }
>       </ul>
>     );
>   }

This isn't far removed from JSONiq (or even XQuery).

Received on Friday, 23 September 2016 21:54:14 UTC