Iterators in JavaScript using Quokka.js




πŸ’– Quokka, the funky inline evaluation tool used in the video (Show sponsor)
http://quokka.funfunfunction.com

πŸ”— Fun Fun Forum topic for the video
https://www.funfunforum.com/t/iterators-in-javascript-using-quokka/4533

πŸ”— Support the show by becoming a Patreon

πŸ”—Code from the episode
https://github.com/mpj/funfuniterators

πŸ”— mpj on Twitter

πŸ”— Help translate the show to your language
http://www.youtube.com/timedtext_cs_panel?tab=2&c=UCO1cgjhGzsSYb1rsB4bFe4Q

Today, we’re going to talk about Iterators in JavaScript. Iterators in JavaScript are what the for … of loop uses when iterating over an Array, but the for … of loop can actually iterate over anything, built in JavaScript objects like Strings, Maps, Set or your own custom JavaScript objects, as long as those objects provide an Iterator.

Quokka is this great little plugin that provides inline evaluation of your JavaScript. You’ve seen me use Quokka a lot in Fun Fun Function videos to showcase JavaScript code, just because I think it’s a great tool, but this episode is actually graciously sponsored by Quokka, so as thanks for supporting the show, I’m going to show it off a little extra. If you want to check it out, go to http://quokka.funfunfunction.com.

πŸ’› Follow on Twitch and support by becoming a Subscriber
We record the show live Mondays 7 AM PT
https://twitch.tv/funfunfunction

πŸ’› Fun Fun Forum
Private discussion forum with other viewers in between shows. https://www.funfunforum.com. Available to patron members, become one at https://www.patreon.com/funfunfunction

πŸ’› mpj on Twitter

πŸ’› CircleCI (Show sponsor)
Robust and sleek Docker-based Continuous Integration as a service. I used CircleCI prior to them becoming a sponsor and I love that their free tier is powerful enough for small personal projects, even if they are private. Use this link when you sign up to let them know you came from here:
https://circleci.funfunfunction.com

πŸ’› Quokka (Show sponsor)
Wonder how MPJ evaluates JavaScript inline his editor. Quokka is the answer – use this link when you buy to let them know you came from here:
http://quokka.funfunfunction.com

πŸ’› FUN FUN FUNCTION
Since 2015, Fun Fun Function (FFF) is one of the longest running weekly YouTube shows on programming πŸ… thanks to its consistency and quality reaching 200,000+ developers.

πŸ€¦β€β™‚οΈ The Failing Together concept is what makes FFF unique. Most coding content out there focus on step-by-step tutorials. We think tutorials are too far removed from what everyday development is like. Instead, FFF has created a completely new learning environment where we grow from failure, by solving problems while intensively interacting with a live audience.

Tutorials try to solve a problem. Failing Together makes you grow as a developer and coworker.

πŸ“Ή Each show is recorded live on Twitch in a 2-hour livestream on Mondays. The host, assisted by the audience, is tasked to complete a programming challenge by an expert guest. Like in the real world, we often fail, and learn from it. This, of course, reflects what the audience identifies with, and is one of the most praised aspects of the show.

⏯ On Fridays, an edited version of the show is adapted for and published on YouTube.

Content Topics revolve around: JavaScript, Functional Programming, Software Architecture, Quality Processes, Developer Career and Health, Team Collaboration, Software Development, Project Management

Original source


26 responses to “Iterators in JavaScript using Quokka.js”

  1. Hello and you are awesome.

    You're sinusites most probably is an sideeffect of an emotional problem you have. I am in my second year working with a life coach and he helped me realized that everithing is related to our emotional part. So, since you asked, if you want to cure you're sinusites just go to a life coach πŸ™‚

  2. Sinisitus is most often caused by food allergies – in my case dairy, gluten, coffee (yes, I know…), soy, etc. Eliinate them all for 2 weeks and see if it clears up. If it does, case closed.

  3. Rinse nose with soda and salt solution. Mix a spoon of each with a glass of room temperature water and put it into nose and wash out. Several times a day. Inhalations with eucalyptus oil too. Cut some onion and and garlic and breath their evaporations.
    It's for managing sinusitis. But if it's chronical, do MRI, there might be a need for surgery.
    Ginger tea won't really do much, but i like it. If you have Nasonex in Sweden, use it too, it's not much, but some help.

  4. Hello, I think the point that you are trying to make actually is that there are "iterable" and "iterator". Array is an iterable sequence of elements, something you can iterate over. This interface (read contract) says that in order to comply with it, the sequence (data structure) must have a method (operator) named iterator which, when called, will generate an object with the iteration state that will return the real data for that position in the sequence.

Leave a Reply