I spent about two hours trying to get my head around this. In the first 2 mins exactly, I understand what and how they are used. YOU SIR ARE SERIOUSLY AWESOME! THANK YOU SO MUCH!
I thought I knew ES6 already and just played this video since you're fun to watch. I'm amazed. Thanks, I had no idea the for...of loop had such complexity underneath. I'm going to watch your videos more often hereon.
Hello! You're doing a great job in explaining a complex things in a simple way. But please review the video, around 2:14 you're saying that WeakSet and WeakMap are iterable, which is not true, which could be cheked by your method via console.dir(someWeakSetOrMap[Symbol.iterator]). Hope it will help beginners not to confuse yourselves.
Hi +techsith, which is better to use in terms of Array interation when I am in need to find the object from the Array: for...of loop or Arrow function?
Hi bro i just want to contribute maybe it could be positive for anyone that is looking for this let myArr=[1,2,3,4,5,6,7]; let itr=myArr[Symbol.iterator](); while(item=itr.next(),!item.done) console.log(item.value);
You definitely provide the most valuable and clear tutorials about javascript advanced techniques and issues.
Thanks a lot for your work :)
Cheers
I spent about two hours trying to get my head around this. In the first 2 mins exactly, I understand what and how they are used. YOU SIR ARE SERIOUSLY AWESOME! THANK YOU SO MUCH!
Thanks for watching!
Crystal clear explanation.
Thanks for watching!
This a bit too much for a newbie like me. But from what I have seen so far you're are the best... Thank you!
Thanks for watching!
clear and precise explanation to iterators. Many thanks
Thank you sir for making JS concepts easy to understand for everyone 🙂
Your explanation is alway easy to understand.
I appreciated much.
Thank you sir.
I thought I knew ES6 already and just played this video since you're fun to watch.
I'm amazed. Thanks, I had no idea the for...of loop had such complexity underneath. I'm going to watch your videos more often hereon.
Thanks for watching!
These turorials by techSith are really very helpful for newbies... Highly Recommended .. Please keep adding more tutorials.
Thanks for watching Vivek.
i'm surprised how you described all this things in a simple way,thanks
When I was learning JavaScript I had really difficult time. so I decided to make think simpler for these videos. I am glad it helped. :)
Thank you so much for your pure explanation. It really helped me to have a good grasp about these confusing concepts. Good job!
Glad it was helpful!
Thanks for the explanation mate!
Learned a lot from it.
Hello!
You're doing a great job in explaining a complex things in a simple way. But please review the video, around 2:14 you're saying that WeakSet and WeakMap are iterable, which is not true, which could be cheked by your method via console.dir(someWeakSetOrMap[Symbol.iterator]).
Hope it will help beginners not to confuse yourselves.
thanks man very clear and concise
I haven't started watching yet and if I successfully understand the topic, I'll comment to my own comment ..
You explained it well! Thank you.
you are the best so far..Your videos are very helpful .Thanks a lot
:) Thanks for watching Tanya!
best video on this topic I have watched so far!!!
Thank Mateja, Do check out the second part which is on generators.
Nice one
You should have shown how to implement an iterator on your own object.
Valuable tutorial sir.
Thanks for introducing to new age iterators
Thanks for watching :)
very good guide !!!!
Thanks for watching
Thank you, really nice explanation
Smooth explanation! Thanks.
Glad it was helpful!
Good make . Would you please raise the volume bit up . Not sure is it because of my earphone and noise around ..please check once
Sir! Its splendid one
Thank you for another perfect video.
We miss you and miss your content ,,, come back please
useful video sir
As many times I watch your video, I find that I have to learn more.
Can you create tutorial series for NodeJs?
I dont have a plan . Do you want to NodeJS from basics?
techsith yes from basic
cool video!
Thank you!
Thanks, didn't know about these.
iterator is interesting trick
It sure is, a very useful one.
Hi +techsith, which is better to use in terms of Array interation when I am in need to find the object from the Array: for...of loop or Arrow function?
When you say Arrow function, you mean for each , map , reduce and filter function?
That loud snore though at 7:49
❤❤❤❤
😍 This is deep
Sir please make a video about try catch and RegExp.
I will soon. thanks for watching
How do I get the "key" while iterating along with "value, done" parameters??
always to the rescue
Pretty much like iterators in Python.
you are a fucking god
Thanks for the awesome comment :)
how do I use if() to print out something if the done: true?
Sorry i didnt get your question. Do you mean like this
if(x===1) {
//do something?
}
You can do this.
if(iterator.next().done == true) {
//have fun writing javascript here
}
7:24 7:49 is there someone snoring in the background!? Haha. Weird.
Yes it must be my father, he his sleeping schedule collides with my video making schedule. I hope it was just a lite distraction , I apologies :)
You're funny.
who's snoring?
Snoring?
honestly iterators is the worst hardest sh!t in javasript.
Hi bro i just want to contribute maybe it could be positive for anyone that is looking for this
let myArr=[1,2,3,4,5,6,7];
let itr=myArr[Symbol.iterator]();
while(item=itr.next(),!item.done)
console.log(item.value);
oh English man