Thanks for all of the support!! Next up JavaScript Crash Course: ruclips.net/video/d5ob3WAGeZE/видео.html 📚 My Favorite Web Design Books 📚 Web Design with HTML, CSS, JavaScript and jQuery Set by Jon Duckett (paid link) amzn.to/2JaiCL8
This is the simplest, slow paced (which is good) and most straightforward video i've seen. For a junior Front-end Dev, I never could understand these from other youtubers because they're all over the place.
Very easy to understand thank you. For some reason I had trouble wrapping my head around arrow functions but this made the subject so much more comprehensible.
I watched other videos about arrow functions and they confused me a lot, I almost gave up on the whole thing..then I found this lesson, well explained and very clear..thank you sir for saving me
Well.. it's kind of a trick. If you look closely, the bottom of the VS Code window stops above the console. It's actually the chrome console running via the live server extension in VS Code :) But if you do want to run it within VS Code you could use the terminal and Node.js.
anyone know of a tutor that can help me with javascript? I am so lost. I am taking a javascript class right now and we had a hw assignment and it took me forever to figure out normal JS syntax and then they want us to rewrite that assingment using arrow functions and I have never cried so much. Its been 3 weeks i've been staring at the same function trying to figure out how to change it to an arrow function!!
Hi, thanks for making the video, I watched most of your videos on your channel. Enjoying watching them. :) When I followed this video, I got an error (SCRIPT5007: Unable to get property 'addEventListener' of undefined or null reference) when running the codes at ruclips.net/video/NAN7U3MrX6o/видео.html (6:11), found that it could due to demo is not declared before load event. Just wondering why you did not have the same problem.
Where in your index.html file are you loading the JavaScript file? If you are loading it in the head of the document you could get this error. It should be just before the closing tag. Give that a try and let me know. Thanks for your support!
when i try to run the code with let message = (a) => 'hello ${a}; and then console.log it, everytime i save i lose the parethesis around the a and then the console log is hello ${a} only . why does vs code format like this and lose the parenthesis? its been driving me nuts. i tried adding the brackets back after the arrow and still the same thing happens. any ideas why?
The parenthesis are optional there. It's being removed by one of your installed extensions but should not be an issue. Are you using backticks around the string? `hello ${a}`
@@codeSTACKr yes i just keep getting the "hello ${a}" instead of Hello John. i checked my extensions and installed eslint and changed my formatter from prettier so that the punctuation stays the same. neither of those options are working. appreciate the help
Your Java Script videos on your roadmap are bad, they not precise! you didn't explain if the console not showing result in liveserver, how we can solve the problem in order to be able to follow your course!, in the HTML course, for example, you do not explain the file path I don't know why this is so important for beginners!?
Thanks for all of the support!!
Next up JavaScript Crash Course:
ruclips.net/video/d5ob3WAGeZE/видео.html
📚 My Favorite Web Design Books 📚
Web Design with HTML, CSS, JavaScript and jQuery Set by Jon Duckett (paid link)
amzn.to/2JaiCL8
This is the simplest, slow paced (which is good) and most straightforward video i've seen. For a junior Front-end Dev, I never could understand these from other youtubers because they're all over the place.
Thank you!
Very easy to understand thank you. For some reason I had trouble wrapping my head around arrow functions but this made the subject so much more comprehensible.
Glad it helped!
I watched other videos about arrow functions and they confused me a lot, I almost gave up on the whole thing..then I found this lesson, well explained and very clear..thank you sir for saving me
I'm glad it helped!
Great series, I love it, can't wait for the React.Js
i can say this is one the top three js course in youtube thank you for sharing your knowledge with us
Wow, thanks!
This video was really like taking off in some details that I wasn't sure about. Thank you so much.
Thanks for watching!
Now Arrow function is mine পানি ভাত। ধন্যবাদ a lots.
I was messed with arrow function & now you make it easy to learn.
thanks a lot, man!!
Glad I could help!
Good overview of arrow functions with examples. Thanks!
Glad it was helpful!
Great video, essential and clear , thx
Great video and finally understood it - would be nice to also explain how arrow functions affect hoisting.
this 9 mints video explained everything about arrow thanks man
Glad it helped!
Thanks for a very concise explanation of arrow functions. Exactly what I needed.
Glad it was helpful!
Thanks for this. Explained perfectly.
You're welcome!
Great stuff, THANKS 🙂
pretty good video!
well explained
thanks for your explanation, subscribed. btw what extension u used to see the result directly in terminal once you saved the file?
he is using live server.
Please how do you make the console below to show the output of your JS code. please am really confused. i can't run my js, only on VS code
for console how you are opeing in vs code? what is the extension???
Good 👍
Man, you are The Wizard of all MF Wizards! thanks, bruh I appreciate it
I appreciate that
how can i see the console in vs
Code ?
So is an anonymous function same as the Lambda function of python??
That was great)
what extension do you use to console log in VS Code?
Well.. it's kind of a trick. If you look closely, the bottom of the VS Code window stops above the console. It's actually the chrome console running via the live server extension in VS Code :)
But if you do want to run it within VS Code you could use the terminal and Node.js.
codeSTACKr haha yeah I was watching one of your other videos and then got the idea that is the chrome console.
nice💕💕👌👌
how did you get console at vscode?
It's just the Chrome console
anyone know of a tutor that can help me with javascript? I am so lost. I am taking a javascript class right now and we had a hw assignment and it took me forever to figure out normal JS syntax and then they want us to rewrite that assingment using arrow functions and I have never cried so much. Its been 3 weeks i've been staring at the same function trying to figure out how to change it to an arrow function!!
Why you used ${a} when you returned the string??
a is the variable that will be placed into the string.
thanks im a beginner and
im thirteen
Hi, thanks for making the video, I watched most of your videos on your channel. Enjoying watching them. :) When I followed this video, I got an error (SCRIPT5007: Unable to get property 'addEventListener' of undefined or null reference) when running the codes at ruclips.net/video/NAN7U3MrX6o/видео.html (6:11), found that it could due to demo is not declared before load event. Just wondering why you did not have the same problem.
Where in your index.html file are you loading the JavaScript file? If you are loading it in the head of the document you could get this error. It should be just before the closing tag. Give that a try and let me know.
Thanks for your support!
@@codeSTACKr Bingo, that was the issue. Fixed. Thanks!
when i try to run the code with let message = (a) => 'hello ${a}; and then console.log it, everytime i save i lose the parethesis around the a and then the console log is hello ${a} only . why does vs code format like this and lose the parenthesis? its been driving me nuts. i tried adding the brackets back after the arrow and still the same thing happens. any ideas why?
The parenthesis are optional there. It's being removed by one of your installed extensions but should not be an issue. Are you using backticks around the string? `hello ${a}`
@@codeSTACKr yes i just keep getting the "hello ${a}" instead of Hello John. i checked my extensions and installed eslint and changed my formatter from prettier so that the punctuation stays the same. neither of those options are working. appreciate the help
Use backticks(` `) sir instead of quotations (" ").
You talk like you're about to fall asleep!
😴
Your Java Script videos on your roadmap are bad, they not precise! you didn't explain if the console not showing result in liveserver, how we can solve the problem in order to be able to follow your course!, in the HTML course, for example, you do not explain the file path I don't know why this is so important for beginners!?