It will assist you in creating a good format README file for your open source project.
May 31, 2022 • 8 tweets • 2 min read
Git is the most essential thing to learn as a programmer.
Let's understand it an easy way 🧵👇
🏢 Let's assume you work for a Gaming company .
🎮 And you are asked to build a new Gaming app .
👨💻 You are not building this project alone but with a team of 4-5 developers.
❓ Here arise a question ?
May 30, 2022 • 8 tweets • 2 min read
Ways to learn JavaScript for free 🧵👇
Learning JavaScript is easy - there is no need to enroll in an undergraduate program in computer science to do it .
There are countless way to learn JavaScript .
Some of them are listed below : -
1. Self guiding Websites and courses -
Flexible online courses are the perfect solution for those who want to learn on their own schedule, or don't have the time to enroll in a formal program.
Some of these websites are :-
May 26, 2022 • 7 tweets • 2 min read
Have you ever wondered why array index starts at 0 not 1 ?
A 🧵👇
◉ An array is essentially a pointer.
◉ What does it mean that an array is a pointer?
◉ It means that it stores a memory address. Instead of storing the value, it stores the location of that value.
Let's understand this with an example -
May 25, 2022 • 10 tweets • 3 min read
Let's learn map(), filter() and reduce() JavaScript method :-
These are used to -
1. Iterate over an array.
2. Create a new array without modifying the old one.