This Week in JavaScript - 9 November 2015

Hello and welcome to This Week in JavaScript, our lovingly curated collection of links relating to what’s new and exciting in the world of JS. The complete list is tagged jsweekly. (Don’t forget to check out our weekly .NET and front end roundups too!)

And now for this week’s JavaScript finds …


Getting started

Learning more

Libraries

  • Canvid.js - A tiny dependency free library for playback of relatively short videos on canvas elements.
  • jQueryConfig - Optimize the size of jQuery so that you don’t download the full version.
  • Wui - Collection of GUI widgets for the web

ES2015 (ES6) and beyond

Frameworks

Testing

Cool stuff


For more links like this and to keep up-to-date with the latest goings on in JS land, you can follow SitePoint’s JavaScript channel on Twitter.

Please PM us if you have anything of interest for the next issue or if there is anything you would like to see featured. Paul and chrisofarabia.

1 Like

The “Things every JavaScript developer should know” seems to indicate that the author doesn’t know JavaScript quite as well as they ought to. Their FizzBuzz solution is the one that a prior “This Week in JavaScript” indicated was not the best way to achieve the result as it requires more if statements and is less flexible than the alternative. The author also suggests that forEach has very limited use whereas it actually eliminates the need to use for and while loops with arrays and handles both dense and sparse arrays.

I agree. I think thought hat the only limitation with forEach that was being meant, is that it’s not for objects (as some people attempt to use it for), and is only intended for arrays.

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.