Learn JavaScript With These 4 Projects!

  Рет қаралды 63,285

Tech With Tim

Tech With Tim

Күн бұрын

Пікірлер: 72
@TechWithTim
@TechWithTim Жыл бұрын
I just released a new software development course that teaches advanced JavaScript and most importantly, helps you land a job! Check it out here: coursecareers.com/a/techwithtim?course=software-dev-fundamentals
@juicyentertainment461
@juicyentertainment461 3 ай бұрын
Dear Tim, About a month ago, I started self-studying programming. My goal is to become a full-stack developer. Through the SoloLearn app, I have gained some basic knowledge, but I still have a long way to go. I am interested in the program you offer and would like to receive more information. What exactly can I expect from your program? Additionally, could you please provide an email address where I can reach you?
@itsnobledean9450
@itsnobledean9450 Жыл бұрын
Just completed the rock, paper, scissors project, and after reviewing the code, my understanding of these basics are now being remembered.
@saeedhalabi
@saeedhalabi Жыл бұрын
I'm a big fan of your videos! I'm a beginner back-end dev, and I've learned so much from your clear and concise explanations of complex concepts. I'm especially grateful for your videos on the different backend frameworks and technologies. I'm excited to keep learning from your videos and to eventually become a skilled back-end developer. Thanks again for all your great work!
@mehliamm
@mehliamm 10 ай бұрын
This was sooo good I actually understood everything and making my own apologies to reinforce my understanding! Ur amazing mate❤️✨
@itsnobledean9450
@itsnobledean9450 Жыл бұрын
I've gotten to the end of the first game, and I have to say, learning like this, for me, is definitely giving me such a better understanding of these core concepts. After watching other tutorials, even paid ones, I feel I'd be willing to pay for your courses, simply off of the clarity you gave me. I'm not done with this tutorial, but I'm confident my abilities will be heightened after completion. Thanks for this!
@megaicefr2
@megaicefr2 Жыл бұрын
I love these JavaScript tutorials Tim keep them coming!
@michawojcieszek2125
@michawojcieszek2125 Жыл бұрын
Please continue making videos linked to JavaScript and React . I love your way of explaining things , thank you .
@Tech_legend-gd3fx
@Tech_legend-gd3fx Жыл бұрын
Perfect Time I am also 13 and I just learnt html and css and now trying JavaScript Great timing Tim🤗👍
@marveluniverse2117
@marveluniverse2117 Жыл бұрын
I’m 14 you’re way ahead of me
@paulthomas1052
@paulthomas1052 Жыл бұрын
Great set of starter apps - Thanks Tim !
@TechWithTim
@TechWithTim Жыл бұрын
No problem! Glad you liked jt
@wanmiguel7704
@wanmiguel7704 Жыл бұрын
Good content man. What do recommend for improving algorithmic thinking, for coding?
@bnbahranfk
@bnbahranfk Жыл бұрын
I am on the 2nd project very easy and simple to understand thanks 👍
@onlyforscience8255
@onlyforscience8255 Жыл бұрын
awesome job Tim! I was expecting such an informative video from you my hunches turned out to be right! Thanks for the content!
@shaunbuddy9259
@shaunbuddy9259 10 ай бұрын
im just getting started and i loved the video! Was finally able to start understanding this! I would like to learn javascript and would like to know where is the best place to do that but also support you. I do see the link but it says advanced Javascript but im brand new so if you could point me in the right direction it would be greatly appreciated! Thanks for taking the time to make this video, much appreciated!
@mohbcn
@mohbcn Жыл бұрын
thank you I super like these mini projects very interesting and you learn much more
@williamkakooza4603
@williamkakooza4603 10 ай бұрын
Thanks alot, this is the best way to learn Programming 😊
@a.a8720
@a.a8720 Жыл бұрын
Hi, I started teaching Python after i watched your videos on how you made money with coding, could you please , please make videos on how to be a good Python tutor?
@parametaorto
@parametaorto Жыл бұрын
That was a very cool approach to coding! I already write in other languages, but I never tried javascript and getting my hands dirty instantly was very useful. Thanks for sharing!
@bimalsharma6248
@bimalsharma6248 7 ай бұрын
Great video , thanks a lot !!
@LordZanji
@LordZanji Жыл бұрын
you are awesome tim! ty for this
@marianmicu7108
@marianmicu7108 Жыл бұрын
Everything make sense now!
@IPAITECH
@IPAITECH Жыл бұрын
You know your work man. God bless you 😀😊😇
@daanw6270
@daanw6270 Жыл бұрын
Do you have to install the prompt-sync every time you start a new javascript project and want to use a prompt?
@pahalbhawsar6228
@pahalbhawsar6228 Жыл бұрын
Liked the way of teaching 🔥
@alainaluu
@alainaluu 8 ай бұрын
Does anyone have suggestions or resources on how to incorporate any of these projects into HTML and CSS? I really like his teaching style and need someone similar ❤
@TOONSSTATION
@TOONSSTATION 7 ай бұрын
You're new to CSS & HTML?
@solaraproject3614
@solaraproject3614 Жыл бұрын
Thanks bro.
@Elifesocialmedia
@Elifesocialmedia Жыл бұрын
love your vids thanks for the likes
@TechWithTim
@TechWithTim Жыл бұрын
Thanks for watching!
@ibrahimhossen6549
@ibrahimhossen6549 Жыл бұрын
Which tutorial should I watch next? And a confusion in my mind that am I learning basic JS or it was Node.js tutorial? Please answer someone. Thanks.
@-Corvo_Attano
@-Corvo_Attano Жыл бұрын
Thanks for sharing 🤍
@TechWithTim
@TechWithTim Жыл бұрын
My pleasure 😊
@itsnobledean9450
@itsnobledean9450 Жыл бұрын
Just completed the random guessing game, and the more I follow these kind of tutorials, the better I feel about learning the basics of Javascript.
@henrymellor9760
@henrymellor9760 Жыл бұрын
In the rock paper scissors game, wouldn't paper be chosen more often than rock or scissors using the Math.round method? Before rounding, rock corresponds to values 0-0.499, paper to 0.5-1.499, and scissors to 1.5-2. This means that paper is twice as likely to be chosen by the computer using the rounding method. Since I am new to JavaScript I am not sure if you can type cast to an integer, but I know in Java it is (int) and Python it's int(), which would be a more effective method for even random generation of the options. Then 0-0.99 would correspond to rock, 1-1.99 to paper, and 2-2.99 to scissors. You would just have to multiply the Math.random by 3 instead of 2 and then type cast it.
@daanw6270
@daanw6270 Жыл бұрын
yes you should use math.floor and with the math.random * 3 instead I think. If you want to use math.random that is
@daniyellaharmon
@daniyellaharmon Жыл бұрын
Thank you for this tutorial! I can't figure out why but even though the tooltip follows my cursor, it is still far away from the cursor. Any help is greatly appreciated, thanks.
@AlbertButHuseyin
@AlbertButHuseyin Жыл бұрын
Well, after doing these projects, do you have any project ideas that we can do ourselves with the information we have learned here?
@enriqueavalos
@enriqueavalos Жыл бұрын
I completed the 1st project. In the second project, I was getting an error. Turns out I left out: const prompt = require(“prompt-sync)(); That was it. Sharing in case anyone else hit with the same. Top of the screen on KZbin cuts off this line. That’s why I didn’t initially notice.
@sayedakbarali5650
@sayedakbarali5650 Жыл бұрын
i think the second project files should be with the npm package folder.
@migueljimenezgarrido1330
@migueljimenezgarrido1330 Жыл бұрын
What is a best idea for informatic enginer . Mac or Windows?
@arishkolnik9316
@arishkolnik9316 3 ай бұрын
which vscode extension do you use for your code appearance?
@Joe-qp9ix
@Joe-qp9ix 2 ай бұрын
Pretty good, informative tutorial, but not a fan of the way that we're being taught methods that seem to only apply to interacting with the script in the console. No one is going to make a living working through console logs. I was kinda hoping to see how to make this all interactive through a website.
@co4349
@co4349 Жыл бұрын
Thanks for your tutorial but I wonder why you look like Gally from Maze Runner. It's very similar
@meyou578
@meyou578 Жыл бұрын
can you make video about how to programming panning and zomming in pygame
@smdowais8004
@smdowais8004 Жыл бұрын
hey tim have doubt what a question have two answers how would it deal with if-else ladder , i tried it but the else part is also been printed
@sirstegi
@sirstegi Жыл бұрын
What VSCode color and icon theme do you use?
@sayedrenaq7747
@sayedrenaq7747 2 ай бұрын
21:00
@jeffgeter3106
@jeffgeter3106 Жыл бұрын
The only thing I don't like is Tim does show how to run the script from a html page. I guess what I'm saying is how you going to run the script without HTML?
@TechWithTim
@TechWithTim Жыл бұрын
You can use node js
@jeffgeter3106
@jeffgeter3106 Жыл бұрын
yes I get that as you showed in the tutorial however, and pardon my ignorance, aren't most JS scripts run off HTML document? You mention showing this off to friends but what if that friend doesn't have a editor or IDE in which to run node js but can load a website in their browser.@@TechWithTim
@YJstation
@YJstation Жыл бұрын
Neesh neesh😢😢😢😢😢😢😢😢😢😢😢😢😂😂😂😂😂😂😅😅😊😊😮😮😮😮😮😮😮😢😢😢
@arjunprogramming2190
@arjunprogramming2190 Жыл бұрын
I just started learning vue 3 😂
@bigneism
@bigneism Жыл бұрын
I don't know where i messed it up, but after answer2, every time i type the answer3 in the terminal, it repeate the 3rd prompt for every letter i wrote, i installed the npm prompt sync
@HarrisSambo-tw9fp
@HarrisSambo-tw9fp 9 ай бұрын
My npm is failing to find the prompt - sync 💔 help
@TOONSSTATION
@TOONSSTATION 7 ай бұрын
Explain
@Mukunth
@Mukunth Жыл бұрын
🎉
@udojikechukwudalu3166
@udojikechukwudalu3166 Жыл бұрын
Please, for the first part, mine is showing me error: cannot find module 'prompt-sync'. I wrote mine exactly how his was written but my terminal is showing me error. What could be wrong
@yjskrishnateja
@yjskrishnateja 9 ай бұрын
Install that module in the terminal by this command npm install prompt-sync Hope it helped:)
@kentziti8752
@kentziti8752 Жыл бұрын
is this tutorial possible without knowing javascript?
@AlphaLibre9
@AlphaLibre9 Жыл бұрын
Is this a reupload?
@TechWithTim
@TechWithTim Жыл бұрын
nope
@furqantarique3484
@furqantarique3484 4 ай бұрын
I never did coding
@babysafety48
@babysafety48 Жыл бұрын
I’m a beginner and you are too fast and I’m super more confused, Why is it none of JavaScript teachers want use real project for teaching, like using html and css and the JavaScript all together 🤦‍♀️
@smnomad9276
@smnomad9276 Жыл бұрын
To be completely honest with you, these are wack. We need realistic projects like a chat bot, a follower/likes bot, a web scraper etc. Something we can actually use in real life, no one will ever wake up one day and say " I totally need to create a random number guesser and a rock paper scissor app to make my life easier".
@tathagata_roy
@tathagata_roy Жыл бұрын
It's for beginners
@TechWithTim
@TechWithTim Жыл бұрын
Just put yourself in the shoes or someone who has only been writing code for 1 week.
@smnomad9276
@smnomad9276 Жыл бұрын
@@TechWithTim Everything I mentioned is beginner level, but at the same time makes you build something realistic and useful and therefore grasp programming concepts far better.
@ilikebeef6504
@ilikebeef6504 Жыл бұрын
Why don’t you see that it’s for beginners
@ManjuSharma-b7l
@ManjuSharma-b7l Жыл бұрын
I wanted to say that if you see my msg, I have bought Programming expert course and it is utter waste. You are teaching as if its 10 year old learning programming. I took that course thinking it has shown around 251 problems to solve and I get frustrated seeing True or False question, this or that. Have some standard question You have add practice questions. Not 2nd grade questions. Very disappointed and not getting refund too.
@mintz347
@mintz347 Жыл бұрын
do it for react also!
Learn JavaScript With These 5 Projects
2:48:51
Tech With Tim
Рет қаралды 14 М.
JavaScript Tutorial for Beginners [JS Crash Course 2024]
1:37:14
TechWorld with Nana
Рет қаралды 203 М.
Seja Gentil com os Pequenos Animais 😿
00:20
Los Wagners
Рет қаралды 16 МЛН
Flipping Robot vs Heavier And Heavier Objects
00:34
Mark Rober
Рет қаралды 29 МЛН
My Daughter's Dumplings Are Filled With Coins #funny #cute #comedy
00:18
Funny daughter's daily life
Рет қаралды 28 МЛН
All The JavaScript You Need To Know For React
28:00
PedroTech
Рет қаралды 629 М.
How To Practice Programming So You Actually Get Good
15:46
Tech With Tim
Рет қаралды 168 М.
Build this JS calculator in 15 minutes! 🖩
15:20
Bro Code
Рет қаралды 602 М.
Mastering JavaScript - EVERYTHING You Need To Know
13:28
Tech With Tim
Рет қаралды 30 М.
If __name__ == "__main__" for Python Developers
8:47
Python Simplified
Рет қаралды 407 М.
5 Javascript Projects to Build (For Beginners)
10:21
Andy Sterkowitz
Рет қаралды 303 М.
Learn To Code Like a PRO and Not Waste Time
13:54
Tech With Tim
Рет қаралды 47 М.
Full Stack Developers will take over. This is why.
11:26
Ed Andersen
Рет қаралды 60 М.
How To Build JavaScript Projects Without Getting Stuck
32:57
Web Dev Simplified
Рет қаралды 72 М.
Seja Gentil com os Pequenos Animais 😿
00:20
Los Wagners
Рет қаралды 16 МЛН