Nikhil AkkiPronikhilakki.in·Sep 9, 2023Unlocking Python's Hidden Gems: A Journey Through IteratorsIntroduction In Python, iterators are a fundamental concept that allows you to traverse through collections of data, such as lists, tuples, and dictionaries. They provide a way to access each element in a sequence one at a time, making it easier to p...DiscussPython DevelopmentPython
Nazmul Hossainnh47.hashnode.dev·Sep 8, 2023JavaScript Iterators and Generators: A Deep Dive into Code EfficiencyMastering JavaScript Iterators and Generators: A Code-tactic Journey Introduction JavaScript is a versatile and dynamic language that constantly evolves. One of its most powerful and often underappreciated features is iterators and generators. These ...Discuss·1 likeJavaScript JavaScript
Luca Del PuppoProblog.delpuppo.net·Sep 8, 2023Mastering JavaScript Async Iterators: Unlocking Asynchronous MagicIn the ever-evolving landscape of JavaScript, staying up-to-date with its latest features is crucial for writing efficient and modern code. One such feature that has garnered significant attention is the Async Iterator. While iterators have long been...Discuss·2.4K readsJavascript Iterators & GeneratorsJavaScript"Mastering JavaScript" but the code is TypeScript... 3
Luca Del PuppoProblog.delpuppo.net·Aug 25, 2023Iterate Like a Pro: Mastering JavaScript Iterators for Effortless CodeWelcome to this blog post, where we're about to unravel the power and versatility of JavaScript iterators. If you've ever found yourself working with data collections and wondered if there's a more efficient and elegant way to navigate them, you're i...Discuss·11 likes·434 readsJavascript Iterators & GeneratorsJavaScript
Favour Georgepsycode.hashnode.dev·Jul 25, 2023Python Itertools: Mastering Efficient Iteration for Enhanced ProductivityWhat is Itertools? Itertools is a Python module used for iterating over iterable data structures using a for loop. It is a collection of tools for handling iterators and iterations in a fast and memory-efficient way. Now, before we get started explor...DiscussPython
Nirmal PandeyforBits Notionbitsnotion.com·May 29, 2023IteratorsIn Python, an iterator is an object that enables traversal over a collection of items, one at a time. It follows the iterator protocol, which involves implementing the __iter__() and __next__() methods. The __iter__() method returns the iterator ob...Discuss·31 readsPython TutorialsPython
Bruce Wellsblog.phpfui.com·Jun 26, 2023Iterators and Database Cursors in PHPIn my last post, I was talking about designing classes and identified some requirements for an ORM I could envision but not find an implementation for. I laid out some requirements, but I don't think I completely thought out what was needed for a nic...Discuss·1 like·53 readsPHP
Charles Muchenecharlesmuchene.com·May 11, 2023Iterator PatternThe Iterator design pattern is a well-known and often-used pattern. It allows us to access elements in a collection without the need to know about the underlying storage details. We get this functionality from an object known as an iterator of the co...Discuss·72 readsiterator
Anirudha Patilatomicjuggernaut.hashnode.dev·Apr 19, 2023JavaScript Interview Question: Iterables and IteratorsJavaScript is an object-oriented programming language, and with the introduction of ECMAScript 6 (ES6), the iterator concept came into existence. An iterator is a new mechanism that allows us to iterate or traverse through data structures like arrays...Discuss·71 readsGeneral Programming
Sandeep Korrapatiphoenixdev.hashnode.dev·Mar 19, 2023Unleashing the Power of JavaScript GeneratorsIntroduction JavaScript, a versatile and constantly evolving language, has witnessed significant improvements over the years. Generators, a powerful but often underused feature added in ES6 (ECMAScript 2015), are one of these changes. In this blog, w...Discuss·47 readsJavaScript