since you asked, let me tell you I AM LOVING THIS SERIES! I am binging this like I am watching a Netflix show! Only difference is that I am actually participating and coding along with you. This is such a dope channel, man! I cannot thank you enough
the only coding series I am watching for too long!! there are multiple reasons i love your explanation its literally short, the video are short! i want to be a programmer like you!
7:00 If my professor explained this concept to me the same way you did, my life would've been a lot less stressful. Thank you for your great style of teaching
wow.....it just blows my mind! I am a UX designer was thinking to learn front end like react but was not sure if I can code. But after watching this base of react, I think I might just be a UX unicorn! tysm!
This code doesn't work. It gives me an error. It also doesn't follow best practices of defining your variables. My version is this: let newVideos = true; let consistent = true; if (newVideos && consistent){ console.log("Thank you very much Hitesh!"); }
with the coming of es6 now functions can be defined in 3 ways:- PLAIN OLD FUNCTIONS: function doraTheExplorer ( param ) {} ANONYMOUS FUNCTIONS ASSIGNED TO A VARIABLE: var theMonkey = function ( param ) {} AND AT LAST, THE ES6 ARROW FUNCTIONS : const duck = ( param ) => {} EDIT: USE const WHEN DEFINING AN ANONYMOUS/ARROW FUNCTION, ITS BETTER THAN VAR, BUT IT IS BLOCK SCOPED const doraTheFuckingExplorer = ( param ) => {}
Hi hitesh, thx for the tips with the " ` ", i usually use the "," (comma) to combine string and variable. i hope u continue this series, because i really love it. keep up the good work sir. thank you :)
const arr = ['a','b','c','d'] console.log([arr.length]) output: [4] on the browser console it's properties shown like this [4] 0: 4 length: 1 This means at the first index we have value '4', why so? Thanks
Sir I tried that ${} to write the js code inside using vscode but it is taking it a string ie when I write ${superheroes.length} it is not displaying the length of the array instead it is printed as it is, in command prompt. What should I do?
I am using ATOM IDE but I am not able to use ES6 syntaxes, example for console.log('we have ${superHeros.length} superheroes.'); I am getting the result -> we have ${superHeros.length} superheroes. how to fix this? how to make ATOM ES6 friendly
Hello Hitesh Sir, I am a great fan of your teaching coding. This is really an amazing JS series. However, I have a question - WHAT'S THE ADVANTAGE OF DEFINING A CONSTANT ARRAY HERE?
Hi Hitesh, I love the way you teach programming, quick question in this Video on arrays at 09:38 when we "console.log(superHeros[superHeros.length-1])" should return value Sipderman right but in your output why Captain America.
Hey , Given Array := superHeros =["Iron Man","Spider man","Cap America"]: Actually *superHeros.length* function is calculating the length of the given Array which is 3 in this case . Since here we know the fact the counting in the array starts from 0 . So, In order to access last element of the array we need to use superHeros.length function and subtract 1 from it . Thats why ,Output should be Cap America!!
can I simply write: console.log("we have "+superHeros.length+" super heros"); instead of console.log(`we have ${superHeros.length}super heros`); ?? a positive reply would be appriciated
Template Literal is a new thing for me. Thanks for the intro of that. I have a question concatenation is also serving the same. Then what's the purpose of introducing Template Literals?
I think it is not correct. could u tell me what's I am gona miss there in my code? because when I define it in this way as u told us. but it is not working properly. as u can see screen shot.
hello hitesh..you are doing fab... please make some videos to clear the concept of oops in php.. also PDO in php ..if yo have a time ..thank you so much :D :D :D :)
Hi Hitesh,thanks a lot for this series.Its been a great learning for me.But I was facing an issue like I was unable to find the length of string using $.Its showing up as a string for me Example:${superheroes.length}
Hi Hitesh, I started watching your training videos and it is really useful. I could see when you type just 'log' the whole 'console.log' is coming in VSCODE. Could you share the steps to configure that in VSCODE? Thanks in advance :)
i need some help and i wonder if you could help me...if you are not too expensive... :) i was your student here in this channel...and thanks to you i am able to do things i dont even understand..funny right? please let me know if you can help. its javascript. im in the middle of a project. thank you