اُسامہ Profile picture
✨ Freelancer 🏖️ MERN stack developer, Nextjs Developer ✨
Dec 25, 2022 10 tweets 1 min read
ReactJS developer Roadmap 🧵 1. Basic things to learn

📌 Components
📌 JSX
📌 Props
📌 States
📌 Events
📌 Conditional Rendering
Dec 24, 2022 6 tweets 2 min read
reduce() Method in JavaScript

🌻 The reduce() method executes a reducer function on each element of the array.

🌻 It returns a single value as a result and doesn't execute the function for an empty array element. 🌻accumulator
It's a value of the previous function call, or the InitialValue for the first call.

If there is no any InitialValue provided then it's accumulate the first item of the array and item is initialized to the second value in the array.

Continue...
Dec 23, 2022 11 tweets 3 min read
Thread of 7 npm commands Everyone should be aware of...
.
.
#developers #Webdesign #javascript30 Image 1. Create package.json

🎓 npm init

# Generate and answer yell to all
🎓 npm init --yes

# Short hand
🎓 npm init -y