Want to see more JavaScript mistake videos? Let me know 👇
@29namankumar293 жыл бұрын
Yes Sir Of course!
@29namankumar293 жыл бұрын
Sir I'm a big fan!
@29namankumar293 жыл бұрын
I am so thankful! I cannot express or in words...
@29namankumar293 жыл бұрын
By mistake I put 'or' in that comment...
@pguti7783 жыл бұрын
Yes!! Also add how is the correct way of doing!!!
@rohitjha72023 жыл бұрын
on fifth, instead of checking else if(arr.length===0) you can check else if(arr.length) only. very good video. thanks
@JamesQQuick3 жыл бұрын
Would you still need the “!”? So (!arr.length)?
@rohitjha72023 жыл бұрын
@@JamesQQuick yeah, just one if condition needed (!arr.length).
@stemuganwa16263 жыл бұрын
Would definitely want to see the common mistakes series.
@aayushbisen893 жыл бұрын
Awesome video, would love to see more common mistakes video. 🚀
@JamesQQuick3 жыл бұрын
Awesome. That’s the plan :)
@SadDamniT3 жыл бұрын
I am new to JavaScript I share my video when I learn them, but I bookmarked your channel. You are amazing ❣️
@Colelius3 жыл бұрын
Very instructive.. thanks..
@chrisdietrich15332 жыл бұрын
another great video, thanks!
@nashsaint3 жыл бұрын
Hey James, just subscribed. What plugin are you using that displays the log on the right, that is pretty cool as it is able to evaluate the if condition
@JamesQQuick3 жыл бұрын
Hey hey! It’s the quokka extension. I’ve actually got a video about it :)
@mt72703 жыл бұрын
what editor you use?
@pguti7783 жыл бұрын
Great video!!
@vishalvmulgir3 жыл бұрын
Great tutorial thanks ❤️
@JamesQQuick3 жыл бұрын
Glad you enjoyed it!
@konser8023 жыл бұрын
Hey, James! What is the editor do you use in video? I really like it!
@aka53 жыл бұрын
It looks like vscode with some cool plugins (seems it's the quokka extension)
@WilCODE_3 жыл бұрын
Any one know the name of the extensión that show you console.log without go to the browser or terminal?
@JamesQQuick3 жыл бұрын
Quokka extension. I’ve got a video on that one as well :)
@MediumSizeNoob3 жыл бұрын
Hi Sir, I noticed that the is a square marker on the left side of the code. Where is that coming from? Thanks 😁
@JamesQQuick3 жыл бұрын
I’m not sure. Do you have a time stamp I can look at?
@MediumSizeNoob3 жыл бұрын
In 2:56 just beside the line numbers 😁
@owainharris3 жыл бұрын
@@MediumSizeNoob That is from the Quokka extension. It's basically saying green means that line is valid code, if it was red it would be an error (I think) - not sure what the white means.
@MediumSizeNoob3 жыл бұрын
@@owainharris Oh okay got it thank you 🙃
@darkseid34273 жыл бұрын
Man can you please make a video on vscode for complete beginners for web developement
@lucasmendonca21973 жыл бұрын
Why is the empty String considered falsy but not the empty array and empty object ?
@JamesQQuick3 жыл бұрын
I think it’s the difference between primitive values and objects in JavaScript. Since strings are primitive values, empty becomes false. But an empty object of array is still a valid object.
@29namankumar293 жыл бұрын
Hi James! I'll vote you as the top #ProWebDeveloperOnline !👍💪
@JamesQQuick3 жыл бұрын
Haha thank you!!
@sokoyaadedolapo53213 жыл бұрын
What I do when it comes to array is check for the length.
@JamesQQuick3 жыл бұрын
If it’s undefined though you’ll get an error if you try the length :)
@tipeon3 жыл бұрын
The real question is: who made the mistake? The developer or the designer of the language?