Thank you so much @Dev Dreamer. I am lucky to have discovered your channel. So basically, I use a paid course to learn JavaScript so that I can study using the correct road map, but I use your channel to understand each concept like it's been explained to me one on one in a classroom. ❤❤
// WHAT IS WRONG WITH THIS AND WHY???? const numbers1 = [45, 4, 9, 16, 25]; const numbers2 = numbers1.map(myFunction); document.getElementById("demo").innerHTML = numbers2; let double = 2; function myFunction(value, index, array) { value *= double; return value }
You should have millions of subscribers
Thank you so much @Dev Dreamer. I am lucky to have discovered your channel. So basically, I use a paid course to learn JavaScript so that I can study using the correct road map, but I use your channel to understand each concept like it's been explained to me one on one in a classroom. ❤❤
Underrated channel. Great job
Fantastic. You just killed all my doubts about why we should be using LET instead of VAR.
Amazing! Thanks for watching 🙂👍
thanks bro u cleared all my doubts
Well explained, you'all remember to subscribe, you won't regret it!
You got a new subscriber today
Consistent. Informative. Knowledgeable.
lesson 38+39 earned you a sub! ;)
would appreciate if u can make more videos on advanced JavaScript and React framework
Excellent explanation 👍🏻👍🏻🔥
thanks man .I understood it .
This a a great tutorial!👍👍👍
Are you planning to do javascript interview exercises too, at the end of this course?
cool! thanks for the update.
amazing video thank you
man you're great
// WHAT IS WRONG WITH THIS AND WHY????
const numbers1 = [45, 4, 9, 16, 25];
const numbers2 = numbers1.map(myFunction);
document.getElementById("demo").innerHTML = numbers2;
let double = 2;
function myFunction(value, index, array) {
value *= double;
return value
}