Forum Feature requests

support for forEach.call loops

Babelfish
It would be great to add support of forEach loops like this:

[].forEach.call(document.querySelectorAll("ul.class li"), function(e)
{
  // …
});
mikeday
Indeed! Perhaps in the meantime you could try the polyfill described in the Mozilla docs.
mikeday
I forgot to update this thread but Prince has supported Array.forEach for some time now. :)