Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

Sorry, but

    <ol>
      <li>...</li>
      ...
    </ol> 
is more verbose than

    new OrderedList(
      new List<ListItem> { 
        new ListItem(...), 
        ... 
      }
    );
??


Well really that could very easily become:

  ol(
    li(...),
    li(...)
  )
Depending on framework.

But honestly, does it really matter? Either choice isn't terrible at all.


just use hyperapp then.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: