I am so lucky to find your channel on youtube, ever since all things changed. Thank you.
@lingyundai9644 жыл бұрын
I love the way you explain things it is very intuitive
@spatz75765 жыл бұрын
The last line of code shouldn't fail. You were confused by a mistake at 11:18. Function f1 has already been defined before let.
@SteveGriffith-Prof3ssorSt3v35 жыл бұрын
Yes. I was just trying to show that you could write it as a function declaration or as a function expression. Either way would allow you to overwrite the older version of the function.
@chesterxp5083 жыл бұрын
Another very cool tutorial!
@pixzelplethora98155 жыл бұрын
This will help me learn. "use strict"; Thank you.
@kieranbarker19024 жыл бұрын
Great video as always, Steve. Thanks!
@maksymantoshkin28965 жыл бұрын
Hello, as always great video! Remember you suggested me "You don't know JS" book series? That was absolutely awesome 😊👍😊👍, I learned a lot new things, thank you. Maybe you could suggest a book or any resource to learn advanced Node.jd? I would greatly appreciate it.
@SteveGriffith-Prof3ssorSt3v35 жыл бұрын
Advanced NodeJS really depends on what you are meaning by that. Being an expert JavaScript developer will make you a better Node developer. If you read, understood and can apply everything you read in "You Don't Know JS" then you will be a very good JS and NodeJS developer. Beyond that it is just learning the different modules that are available in Node for working with Streams, File System, database, and different protocols (the things you don't do much of in the browser)
@RonWaller5 жыл бұрын
So is that where linting comes in to catch errors before you run the program and then get errors?
@SteveGriffith-Prof3ssorSt3v35 жыл бұрын
Exactly
@sery1524 жыл бұрын
Thanks, good video. But I think the last part with let is wrong, I checked and the reassingment is working.
@SteveGriffith-Prof3ssorSt3v34 жыл бұрын
With let you can reassign but not redeclare. Strict mode makes var work in the same way
@JamesFraley4 жыл бұрын
Very informative!
@Dev-ry9cx5 жыл бұрын
Ahh now i get what this Strict mode is !
@tengun5 жыл бұрын
So even if we already have a function named f1, we can still declare a new variable named f1? Then, the function became inaccessible?
@samuelmatheson96555 жыл бұрын
Yeah, thanks, but no thanks. i like my sloppy mode XD
@SteveGriffith-Prof3ssorSt3v35 жыл бұрын
Ok. I'll allow it. As long as you're using a linter.
@damo1903 жыл бұрын
U said, line 42 fails. But it works fine. I couldn't understand what u r trying to say here.
@SteveGriffith-Prof3ssorSt3v33 жыл бұрын
I left off the "let" at the start of line 42. That is what would make it fail.