๐I'm also planning to make a video JavaScript video series on YouTube as well!
โก Series Name: JavaScript ๐ Comrade
- But I'm not good at english speaking๐, so forgive me if I made any mistakes;)
โก Series Name: JavaScript ๐ Comrade
- But I'm not good at english speaking๐, so forgive me if I made any mistakes;)
- Initially, it takes more time but after 10 - 20 videos maybe I will improve my english speaking.
- So, I am not going to commit that I will post a new video every day.
Episode 1:โฌ๏ธ
youtu.be
- So, I am not going to commit that I will post a new video every day.
Episode 1:โฌ๏ธ
youtu.be
๐ First of all, we have to keep in mind that "map" are 2 different concepts in JavaScript.
1๏ธโฃ Class Map (Object)
2๏ธโฃ Functional map (Array)
- So in this thread, we are going to cover the class "Map" in JavaScript.
1๏ธโฃ Class Map (Object)
2๏ธโฃ Functional map (Array)
- So in this thread, we are going to cover the class "Map" in JavaScript.
๐ Map object in JavaScript?
- The Map object stores key-value pairs, we can specify any type of primitive key-value pair inside the Map object.
- Map object is a collection of unique elements.
- The Map object stores key-value pairs, we can specify any type of primitive key-value pair inside the Map object.
- Map object is a collection of unique elements.
๐ Once we set the key pairs to the Map object, it provides some awesome Map methods that are used to manipulate its elements.
- I've already covered a Map method that is "set" which is used to insert elements in the Map object.
- I've already covered a Map method that is "set" which is used to insert elements in the Map object.
โก You can learn the "for...of" loop from this thread:
- You can also learn forEach loop from this thread:
Loading suggestions...