This is in a true sense "GOLD" in my opinion ! This is just too wonderful! I just can't express how informative and also practical at the same time this single video is . THANK YOU SO MUCH, SIR.
I can't thank you enough for this tutorial! I have been struggling with running JS in HTML. Reading the console and figuring out where the error lies is definitely a life saver. Now I feel like there is hope. Thank you!
Now this is indeed a beginner tutorial ! Best I watched so far. I am no longer at that 'super scratch' beginner level but I remember when was the time and how much things frustrated me
That's the thoughest lesson so far. But something that I just realize is that there's no time to cry with programmming language: just grab your energetic drink and .....man, I am exploding of new ideas..many thanks.
I appreciate how you explain things by starting with what you're going to do and use and by describing the connection between the code, what it does and what it allows the user to do. Nice!
I did not learn about that query selector method during my JavaScript course. It seems like it's a much more elegant way of accessing elements based off their ID or name than using the "getElementById" or "getElementByName" methods. Thanks!
Thank you king, I was struggling putting everything clear in my head, I knew how to make functions and stuff, It's just was unclear how to proceed and you made it very clear, you earned a sub !
I was able to successfully follow along with this video. I do plan on making a fancier version of a calculator and then using it in my portfolio and giving you credit
I already knew how to build that calculator, but thanks for making the video and all of your hard work! I knew how to build it, but didn't think of building it until I saw this video which gave me the idea of coding that calculator myself!
Thanks for the way you teach patiently and well-detailed. keep it up! Hope to see if you have node.js tutorial. I'm skimming on your tutorials as I'm coming from a desktop programming background and have abandoned web for more than 10 years. I'm glad I found your channel.
Update: If you do everything in the video and get an Undefined in the console.log this could be because of one simple error. The if statement from the video will check for a lowercase word in your HTML code. As shown below: if (op == "add") { calculate = a + b; } else if (op == "min") { calculate = a - b; } else if (op == "div") { calculate = a / b; } else if (op == "mul") { calculate = a * b; } Add Minus Divide Multiply if you keep your operation (op) javascript code as is make sure it is written the same way in your HTML code. For me, I changed my if statement to uppercase and typed out the whole word and this worked. My correction is shown below: if (op == "Add") { calculate = a + b; } else if (op == "Minus") { calculate = a - b; } else if (op == "Divide") { calculate = a / b; } else if (op == "Multiply") { calculate = a * b; } Add Minus Divide Multiply Hope this helped! #SCE #Stereocrate #stereocratentertainment #Reezun
Maybe the best turotial on Javascript where actually you learn to implement it with Html something that it's rare for these type of tutorials! Super useful knowledge that you can apply on your own projects later!
I'm new here but I liked your content. it is simple and focused on its goal (you didn't go-to styling and all that kind of stuff as we are not here to learn about that). Thank you
you work great job! i hope you will make more more videos with more examples in short time, it's easy to you and mybe insignificant , but for us it very important :D... for example games, dinamicaly things in web-sites...
Dude You are a god send! Than you so much, I've watched so many tutorials and different people explain Javascript but you do it so clearly while also making sure we understand how this interacts with our HTML. 10/10 subbed!
Hey.... U explain very well.... So thank you so much.... actually first I got some confusion regarding the previous videos...but it gotta clarified in this video...THANK YOU !
Dude seriously, I am not religious but I will pray for you and ask life to allow you all the success this life can give to a human being. Thanks for sharing your knowledge in such an amazing way!
This is quite helpful as one of the projects I have to do for my bootcamp is a basic calculator similar to this. However, they have a lot of extra stuff in their code templates that don't make any sense so I'm going through your JS videos to see if i can learn anything useful
Great tutorial. There's lots of info out there explaining variables, loops etc but not a huge amount of tutorials showing how to put it into practice. Keep up the good work
very informative, but for a beginner i found it too much information to take in but I did digest some of it. Also might I add, if you could create some exercise or a small project so all of the skills learnt can be put to use and improve the knowledge. Just a bit of feedback really. PS: Thank you for uploading this! building a simple game brought me here but now I am going through each episode so I can digest and practice. Youre super cool, thank you!
If you want to get result on the main screen other than inner window then you can use this statement in your code document.getElementById("result").innerHTML = Answer; and make a div in HTML page as well :P
i think you should explain "concatenation"...maybe you wouldn't have to keep explaining that when you add to strings together it only puts them next to each other. but other than that i think very informative.
Question, if you needed to declare the variables: a and b in the function as integers, as you did using parseInt, because the input type was "text," why not just change the input type to number? I would appreciate an answer to this! Great tutorial nonetheless
So If you can explain what exactly parseInt() method is and how to use then I might have an idea. If you can do that video again I think I will understand javaScript more!
This is in a true sense "GOLD" in my opinion ! This is just too wonderful! I just can't express how informative and also practical at the same time this single video is .
THANK YOU SO MUCH, SIR.
I am so blessed. I was really struggling to understand how to make HTML and Javascript interact. Thank you
same
I can't thank you enough for this tutorial! I have been struggling with running JS in HTML. Reading the console and figuring out where the error lies is definitely a life saver. Now I feel like there is hope. Thank you!
Just keep at it. Remember: repetition is the mother of skill...
Really enjoyed this! You do a great job explaining the concepts. I'm going to watch all of your JS tutorials now. :-)
Now this is indeed a beginner tutorial !
Best I watched so far.
I am no longer at that 'super scratch' beginner level but I remember when was the time and how much things frustrated me
That's the thoughest lesson so far. But something that I just realize is that there's no time to cry with programmming language: just grab your energetic drink and .....man, I am exploding of new ideas..many thanks.
I appreciate how you explain things by starting with what you're going to do and use and by describing the connection between the code, what it does and what it allows the user to do. Nice!
I did not learn about that query selector method during my JavaScript course. It seems like it's a much more elegant way of accessing elements based off their ID or name than using the "getElementById" or "getElementByName" methods. Thanks!
Thank you king, I was struggling putting everything clear in my head, I knew how to make functions and stuff, It's just was unclear how to proceed and you made it very clear, you earned a sub !
Great topic to discuss. wonderful presentation...
8:59
"Darn it! I just confused you even more."
a few seconds later
"So what we just did here was we did that"
I really appreciate how you carefully and thoroughly explain everything.
I was able to successfully follow along with this video. I do plan on making a fancier version of a calculator and then using it in my portfolio and giving you credit
6:25
//laughter=" how do i explain this to these idiots"
😂😂
lmfao
Really convenient and detailed for a beginner like me, thanks a lot for that.
It's satisfying. My calculator is working fine. Thanks.
I already knew how to build that calculator, but thanks for making the video and all of your hard work! I knew how to build it, but didn't think of building it until I saw this video which gave me the idea of coding that calculator myself!
You explain things so clearly and easy, you're a great teacher. Thank you
Thanks for the way you teach patiently and well-detailed. keep it up! Hope to see if you have node.js tutorial. I'm skimming on your tutorials as I'm coming from a desktop programming background and have abandoned web for more than 10 years. I'm glad I found your channel.
I doubt if someone will explain backend patiently like this
Update: If you do everything in the video and get an Undefined in the console.log this could be because of one simple error. The if statement from the video will check for a lowercase word in your HTML code. As shown below:
if (op == "add") {
calculate = a + b;
} else if (op == "min") {
calculate = a - b;
} else if (op == "div") {
calculate = a / b;
} else if (op == "mul") {
calculate = a * b;
}
Add
Minus
Divide
Multiply
if you keep your operation (op) javascript code as is make sure it is written the same way in your HTML code. For me, I changed my if statement to uppercase and typed out the whole word and this worked. My correction is shown below:
if (op == "Add") {
calculate = a + b;
} else if (op == "Minus") {
calculate = a - b;
} else if (op == "Divide") {
calculate = a / b;
} else if (op == "Multiply") {
calculate = a * b;
}
Add
Minus
Divide
Multiply
Hope this helped!
#SCE #Stereocrate #stereocratentertainment #Reezun
One of the better explanations I've seen on this subject, and I've been looking for a few...days. Thanks man!
Maybe the best turotial on Javascript where actually you learn to implement it with Html something that it's rare for these type of tutorials! Super useful knowledge that you can apply on your own projects later!
I'm new here but I liked your content. it is simple and focused on its goal (you didn't go-to styling and all that kind of stuff as we are not here to learn about that).
Thank you
you work great job! i hope you will make more more videos with more examples in short time, it's easy to you and mybe insignificant , but for us it very important :D... for example games, dinamicaly things in web-sites...
You are a great teacher. Very nice explanation.
I cannot express how helpful these tutorials are. Keep up the good work, man!
You are an awesome person and an awesome teacher. Thanks so much for taking time to help people.
Dani your tutorials on JavaScript are awesome. keep it up.
Very helpful! I thought it was gonna be extremely difficult but you explaining made it a lot more simple and made me realise I can already do it!
I like your voice and accent. It sounds so clear and easy to understand.
Hey, I had fun building this in CodePen and following along with you. On to the next one!
Cool video, for reference when you using calculations you should use strict equal to ===
You are a great teacher. You explain things very clearly and easily. Thanks bro! Keep helping people with your great work
Dude You are a god send! Than you so much, I've watched so many tutorials and different people explain Javascript but you do it so clearly while also making sure we understand how this interacts with our HTML. 10/10 subbed!
Hey.... U explain very well....
So thank you so much.... actually first I got some confusion regarding the previous videos...but it gotta clarified in this video...THANK YOU !
Wonderfull tutorial! I have learnt lots of things about PHP and JS from your channel. I am curious if you can you make a Node.js tutorial.
Fantastico! Your explanation is superb and you didn't rush it 👏👏👏
Thank you for your easy to understand instructions!
OH My God, I did it! I am a wizard, Harry!
Thanks Dani.
Thank you 🙏😭
It’s quite difficult to find beginner projects that explaining details.
Not only that but the fonts are bold enough to be seen from a phone screen. That is awesome!
Excellent tutorial. Very helpful.
Dude seriously, I am not religious but I will pray for you and ask life to allow you all the success this life can give to a human being. Thanks for sharing your knowledge in such an amazing way!
I love ur channel sir, thanks a lot sir, God bless u. Dummies like me have been looking for this kind of channel
well done sir,i really enjoy your tutor and keep on the good work. Thank you so much
Thank you so much for all these videos!
you are amazing ! your voice so clear or simple , you are a best , you teacher , you my soul , you good , thank u thank u thank u .......
This is quite helpful as one of the projects I have to do for my bootcamp is a basic calculator similar to this. However, they have a lot of extra stuff in their code templates that don't make any sense so I'm going through your JS videos to see if i can learn anything useful
Great tutorial. There's lots of info out there explaining variables, loops etc but not a huge amount of tutorials showing how to put it into practice. Keep up the good work
The most easiest way! Thanks. 😊
very informative, but for a beginner i found it too much information to take in but I did digest some of it. Also might I add, if you could create some exercise or a small project so all of the skills learnt can be put to use and improve the knowledge. Just a bit of feedback really.
PS: Thank you for uploading this! building a simple game brought me here but now I am going through each episode so I can digest and practice. Youre super cool, thank you!
I got excited and just popped in on this video first. I thought var was done. Const. Let. ES6. Awesome.
I'm a new subscriber, and this was very beginner-friendly and useful! Thanks!
Great video. Helped me out a lot. I'mma be watching the rest of the JS tutorial since it seems to be helping me more than my university course is.
This was a great video! It was perfectly paced and wasn't great for all levels! Thank you so much for this. I will be doing more of your projects.
So lucid .. so conducive.
If you want to get result on the main screen other than inner window then you can use this statement in your code document.getElementById("result").innerHTML = Answer; and make a div in HTML page as well :P
You are amazing, ur lessons are enjoyable sir
Instead of document.querySelector(#id).value ,
Can I still use, document.getElementById(“I’d”).value ?
thanks man I put borders in my div box and centered the text, all in all, this is a very good video
I created a calculator using Android. Thanks Dani
great video best of all explaining at the root of the problem, I saw divesos videos and yours was the best of all
love it!
Still very valuable..great work.
Awesome tutorial!
i think you should explain "concatenation"...maybe you wouldn't have to keep explaining that when you add to strings together it only puts them next to each other. but other than that i think very informative.
awesome video, it make me want to learn more js
Thank you, that was easier than expected!
Really good tutorial. Brings together a bunch of topics and skills into an actual project. Better than Wes Bos imo!
Question, if you needed to declare the variables: a and b in the function as integers, as you did using parseInt, because the input type was "text," why not just change the input type to number? I would appreciate an answer to this! Great tutorial nonetheless
wow.... this is really easy.... Thanks so much Daniel
So If you can explain what exactly parseInt() method is and how to use then I might have an idea.
If you can do that video again I think I will understand javaScript more!
I thumbs up before i even watch. Your a legend :)
thanks for explaining that dickhead
wonderful tutorial bro...please do some intermediate level javascript tutorials
this actually made me very confused because i though i missed a lot of metirial i love you but i am going to keep the practices to the end
Thank you for this one, great tutorial! I'm new to JS and I learned a lot of new things! Tusen takk! :-)
Easier way.. Thanks for explain the code
17:02 kept getting a "Uncaught TypeError: document.querySelector(...) is null" so I used document.getElementById("result").innerHTML worked.
Great lesson as always!
This was great! Thank you so much!
Hey! Thank you so much! Quick question, Why do you do one if statement and the other 3 else if statements? Why not all if?
I really like your video
Excellent !
good video, thanks
So clear and simple, thank you!
Awesome tutorial! Easy to follow :)
Perfectly explained!! Thanks !!!
fantastic bro
You saved my homework task
Thank you a lot, amazing lesson! I enjoyed it very much :)
Which pc software should i use to practice this?? I am learning from grasshopper app and making flags as i am a beginner 😊
Excellent! Nice job.
What would happened if we set input type ="number" in our form? Would be output string as well? Thank you for your videos :)
Other than not being able to style as specifically, is there any side effect to have your text not inside of some element? I've never seen this before
Oh thank you, this open my mind!
Nice video, thanks!
Can this be done using Switch Statements instead?
I am trying to use different techniques to achieve the same result.
thanks but you could use switchcase condition instead of if loops
Thank you!
thanks!! that was helpfull!
Awesome Explanation sir