Learn JavaScript With This ONE Project!

  Рет қаралды 758,793

Tech With Tim

Tech With Tim

Күн бұрын

Пікірлер: 491
@bambaam7186
@bambaam7186 2 ай бұрын
As a 146 year old Tibet monk that video really helped to get one step closer to a first functioning website for our monastery.
@goprohunter
@goprohunter 2 ай бұрын
LOL
@snyyx
@snyyx 2 ай бұрын
wtf 😅
@Mehak-Fatima-Naqvi
@Mehak-Fatima-Naqvi Ай бұрын
Is this a joke?
@DawitSoftware
@DawitSoftware Ай бұрын
@@Mehak-Fatima-Naqvi nah he is my friend I know him, I am his senior monk with 200 years of experiance
@entertainercartoons
@entertainercartoons Ай бұрын
😅😂​@@DawitSoftware
@SmithBorja-c3o
@SmithBorja-c3o Жыл бұрын
Tim - I am very impressed by your teaching technique. As a 58 year old database programmer, I learned a lot about JavaScript from your 16-part tutorial and this video really cemented the concepts you covered earlier. You have a bright future ahead of you! Keep plugging along.
@aaronamoso
@aaronamoso 9 ай бұрын
first 15 minutes and its validating how much I actually know how to code. so much new info too! thank you very much!
@mericcintosun
@mericcintosun Жыл бұрын
I am a new JavaScript language learner and seeing a "real project" taught me a lot, even though it was challenging for me. Thanks to this video, I realized that I need to work harder. Thanks a lot for this great value!
@cayjutler1262
@cayjutler1262 2 ай бұрын
Ngmi
@mostlyrob3469
@mostlyrob3469 Жыл бұрын
ive been developing with javascript with more than 10 years of experience, yet I still enjoy these beginner tutorials and still learn alot.
@sajosunny3579
@sajosunny3579 Жыл бұрын
Then u😃 noob
@ebran2669
@ebran2669 Жыл бұрын
@@sajosunny3579 🤣🤣
@republicgamer6998
@republicgamer6998 Жыл бұрын
@@sajosunny3579 😂😂😂😂
@nikitapestov1711
@nikitapestov1711 Жыл бұрын
bruh what🤣
@werrutkyupnext
@werrutkyupnext Жыл бұрын
@@sajosunny3579 lol 😂😭
@Zshafique1
@Zshafique1 Жыл бұрын
Hi Tim I have just finished this project in one go without stuck anywhere. You explained quite well. Thank you for this project. I am going to use this on my portfolio.
@DETECTIVESPACEMAN09
@DETECTIVESPACEMAN09 Жыл бұрын
you're a hell of an instructor Tim, I really appreciate your ability to break down the concepts clearly.
@RonitPandey-z5r
@RonitPandey-z5r Жыл бұрын
From the first few words I though you were giving a bad review
@Konspiracie
@Konspiracie Жыл бұрын
I'm only 10 minutes in, but this is probably the best execution of this tutorial style I've ever seen.
@kevinvikan8115
@kevinvikan8115 Жыл бұрын
Great video, learning by practicing is so much better. Even if all you do is copying a few lines of code that you see in each lesson. Much more effective than just taking notes. I know this because I tried everything and the only way I could learn (and retain what I learned) was when I started doing that. Once a friend suggested me a few books with interactive content, that made me practice what I learned at each chapter. Edit: For those asking about the books I mentioned, these are the best ones: "Javascript In Less than 50 Pages" "Head First Javascript Programming" If you are into learning Python, "Smarter Way to Learn Python".
@myke6972
@myke6972 Жыл бұрын
is it normal that you get stuck sometime and look at some code for reference?
@not-a-lot-of-options
@not-a-lot-of-options Жыл бұрын
@@myke6972 I'm just a hobby coder, but from what I've read from people that do it professionally the answer is yes. They lookup in docs and posts on places like stack exchange all the time. No need to re-invent the wheel when working.
@Sahil-ev5pm
@Sahil-ev5pm Жыл бұрын
@@not-a-lot-of-options Hey buddy can u explain why tim didn;t get error even though he re declared blocked variable const numberoflines
@MegaBagman
@MegaBagman Жыл бұрын
Bot account commenting on videos like this to promote those books
@Saad-ashfaq27
@Saad-ashfaq27 10 ай бұрын
Hi, are you referring to the numberoflines = getnumberoflines()? ​@@Sahil-ev5pm
@abdulkadiraminu262
@abdulkadiraminu262 Жыл бұрын
For those who get an error saying that the module is missing even though it's there, try uninstalling node js then installing the current version instead of the lts. I got the error during the prompt sync section and this worked for me. Simply redownload the installer for the lts version then run it to uninstall it
@ruairimulhall547
@ruairimulhall547 Жыл бұрын
Had the same problem thank you sir
@abdulkadiraminu262
@abdulkadiraminu262 Жыл бұрын
ur wlcm
@Rahim-444
@Rahim-444 Жыл бұрын
i just finished the project,it was helpful, i did many things my own way I find that the best way to learn, sometimes I see that your solution is better than mine so I change it sometimes I find that mine is better or easier to understand so I keep it, again this was very helpful I always like this project series keep them coming!
@Str_DegenJ
@Str_DegenJ Жыл бұрын
Bro i have error
@itsnobledean9450
@itsnobledean9450 Жыл бұрын
I completed this video 4 whole weeks ago! Wow! I just came back today to rebuild it, with functional programming concepts, and man, I know my life has revolved around JavaScript for the last 4 weeks, but coming back to videos like these have really helped me understand how to properly use conditionals, and most of all, how to organize my builds with a functional programming mind frame. I separate the date from the functions, and I use map and join for the reels. I broke it up into a bunch of smaller functions with specific tasks.
@beastmoderilla4428
@beastmoderilla4428 Жыл бұрын
This was amazing! the perfect project i was looking for to understand JS. This was very well done Tim. Looking forward for more!
@TechWithTim
@TechWithTim Жыл бұрын
Awesome, thank you!
@ihatethewind
@ihatethewind Жыл бұрын
JavaScript functions are hoisted aren’t they? I call functions all the time before I define them.
@MarshallSC1
@MarshallSC1 Жыл бұрын
@@ihatethewind Only if they are declared the old way with "function" keyword. If they are declared with the new ES6 way, the "arrow" => functions, they are not. Arrow functions are not getting hoisted.
@dominikbogdanski9244
@dominikbogdanski9244 Жыл бұрын
Great video! Also, when asking for amount of lines to bet on we can do this: const lines = prompt("Enter amount of lines to bet on (1-" + ROWS + "): "); so it changes as we change number of rows in our slot machine
@Snsnnsnn-b7h
@Snsnnsnn-b7h 4 ай бұрын
I think a lot of people are missing out from the real intention of this video. He is simply going though all the vanilla JavaScript topics any newbie or beginner should be familiar with in thier early stages of JavaScript development . Topics such as declaring and assigning variables, for loop or while loop, JavaScript functions arrow functions, debugging etc He is simply trying to do what should normally take months to learn and master and try to make it as simple and perhaps encourage learning the fundamentals I found the video extremely helpful and insightful, in so my opinion so many ways to kill a bird and surely this is one way to it Well done Tim
@fumano2679
@fumano2679 Жыл бұрын
i love seeing your development not only in writing clean code but also improving in structuring your projects. lovin it keep it up nice video
@timchat9_my_teleqram_id
@timchat9_my_teleqram_id Жыл бұрын
Teleqram me 👆⬆️
@jenex5608
@jenex5608 Жыл бұрын
Tim is a man now who remembers when he was in high school. Back then i was at the end of middle school. Now I'm in 3rd year of college
@JohnSmith-zl8rz
@JohnSmith-zl8rz Жыл бұрын
This tutorial is way better than others that just teach theory
@punksterbass
@punksterbass 10 ай бұрын
thank you Tim, this was my first introduction to Javascript (coming from a Python background) and it was immensely helpful
@moebidaz
@moebidaz Жыл бұрын
This project was truly helpful! I just have a small suggestion regarding the code at 19:16. Instead of using (.numberOfLines > 3), it would be better to use (.numberOfLines > ROWS). Just to ensures that the code remains intact even when we alter the value of ROWS.
@Sahil-ev5pm
@Sahil-ev5pm Жыл бұрын
Hey buddy can u explain why tim didn;t get error even though he re declared blocked variable const numberoflines
@yessirski7868
@yessirski7868 Жыл бұрын
@@Sahil-ev5pm if I am not mistaken, it's because the first number of lines was inside of a function, meaning it isn't global. unless it is a constant outside of the function, you are free to use it again.
@edeniyanda
@edeniyanda Жыл бұрын
You're right on time, Tim. I just wanna start learning JS Thanks for this video
@MathemadicaPrinkipia
@MathemadicaPrinkipia 11 ай бұрын
Thanks Tim. I just finished all my HTML, CSS now Javascript and so far I've done 2 projects, it helps a lot to see how I can actually put my knowledge to good use rather than just mindlessly learn the language. I've been struggling to find this kind of videos. so thanks again for sharing hope to see more from you.
@sanausman2931
@sanausman2931 9 ай бұрын
How you start it.. i am trying but i cannot. Can you give me some tips. So i will follow
@tonyt_mp4744
@tonyt_mp4744 8 ай бұрын
I had to chatgpt where to start. Im adding event listeners and other elements to dynamically work with the slots. Going to make my own icons too.@@sanausman2931
@finnikey
@finnikey 11 күн бұрын
Something to note at 20:30 - the order matter for const functions. If you use the function keyword, they are 'hoisted' to the top and can be placed in any order. For example, the following would work because it is using the function keyword: const numLines = promptNumLines(); function promptNumLines() { const minLines = 1; const maxLines = 3; while (true) { const lineAmount = prompt("Enter a line amount (" + minLines + "-" + maxLines + "): "); const numLineAmount = parseFloat(lineAmount); if (isNaN(numLineAmount) || numLineAmount < minLines || numLineAmount > maxLines) { console.log("Invalid line amount. Please try again."); promptNumLines(); } else return numLineAmount; } }
@suor2680
@suor2680 2 ай бұрын
17:09 17:49 part 2 - get user's number of lines - & collect bet 21:06 part 3 30:31 pt 4 37:07 columns reels
@suor2680
@suor2680 2 ай бұрын
37:06 i = 0 "LOOP keeps track how many loops we need to perform (variables) 37:14 i < COLS "BE LOOPING PER COLUMN i is less than # of columns - stop at the number of columns there is 37:27 i++ "JUST EXIT? keep looping. And exit loop ******************************************************************************************************************* 37:58 38:34 const reelSymbols = [...symbols]; "generates 39:00 copies all symbols into another array. random select symbol, add to reel 39:02 for (let j = 0; j < ROWS; j++) { remove 'rest of symbols' from reels as we add the symbols into each'next?' reel/column 38:23 'code paragraph' above is all list available symbols "per reel/column" 45:46 const randomIndex = Math.floor(Math.random() * reelSymbols.length); randomly picks one symbol that are available per row 40:38 random index round down (Math.floor) # x total available symbols (Math.random() * reelSymbols.length) 45:52 const selectedSymbol = reelSymbols[randomIndex]; inserts into reel 46:00 reels[i].push(selectedSymbol); pushes in per variable, i 42:32 we selected reel/column i 45:04 reelSymbols.splice(randomIndex, 1); remove from available symbol, to not use it again ************************************************************************************************************ for (let i = 0; i< ROWS; i++) row. pushes all symbols into rows 49:11 rows.push([]); pushes in new row - this array[] represents row 49:27 for (let j = 0; j< COLS; j++) { loops every single column 50:00 rows[i].push(reels[j][i]) accessing row-i column-j EACH ROW: 51:34 const printRows = (rows) => { prints all rows in code 51:47 for (const row of rows) { loops through all rows 52:03 let rowString = ""; prints row 53:11 += adds elements into string 53:43 if (i != row.length - 1) { rowString += " | "; does not add pipe to last symbol, accept for all other row
@suor2680
@suor2680 2 ай бұрын
const rows = []; for (let i = 0; i< ROWS; i++) row. pushes all symbols into rows 49:11 rows.push([]); pushes in new row - this array[] represents row 49:27 for (let j = 0; j< COLS; j++) { loops every single column 50:00 rows[i].push(reels[j][i]) accessing row-i column-j
@KendrickSimphao
@KendrickSimphao Жыл бұрын
I watched this 4 months ago, and I had no idea what this man was saying but now I find myself auto-completing his explanations lol.. I think I have made some progress.
@thatguyty96
@thatguyty96 Жыл бұрын
Why are the best youtube teachers named Tim? You and Tim Corey holding it down. Thanks for the video.
@yashhhh740
@yashhhh740 Жыл бұрын
As a 88 year old programmar, your videos helped me alot to ace Javascript
@harryhome86
@harryhome86 8 ай бұрын
As a 99 old grandpa… I forgot what I was going to say
@amit-jx5lh
@amit-jx5lh 4 ай бұрын
Dude you are genius. Your way of teaching is absolutely amazing and most importantly, your way of writing codes is so clean and well organized. Thanks for this tutorial.❤❤
@hymydairy
@hymydairy 8 ай бұрын
Happily to find you. It means a lot for me. Also thank you for your understandable accent.
@alexmash1353
@alexmash1353 Күн бұрын
As a zero year old fetus that resides in the stomach of my mother for a time being, I express my gratitude since this project helped me to be a bit more prepared for the life outside in the harsh economic conditions, since I would be able to write in my CV that my experience is equal to the numbers of the years of my life and thus have my chances to be hired a bit higher.
@nahumabinet7337
@nahumabinet7337 Жыл бұрын
Tim, You're so fascinating teacher, and I love all your videos because they teach me a lot. You made me remember many things I have forgotten and that's insane, I mean, you made me see that, although have worked as a software engineer for many years, I still have many things to learn, and that made me ecstatic a little bit. So I would love to thank you for this exciting video. learning will never stop!😉😉😉
@ujjwalgupta6503
@ujjwalgupta6503 3 ай бұрын
To whoever had trouble understanding the random number selector, here's a comprehensive explanation: Math.random() will give us a number between 0 to 1 here 0 is inclusive and 1 is exclusive what this means is the number could be 0, 0.1, 0.2, 0.3, ......, 0.99999 maxx so multiplying it by the length let's say it's 10 would give us a range from 0 to 9.9999 inclusive now the number could be 3.6 etc but the index is only a whole number so the Math.floor() function will effectively remove the decimal part or can be interpreted as shifting the number to the lowest whole number: 9.9 -> 9 3.3 -> 3 4 -> 4 0 -> 0 0.1 -> 0 0.999 -> 0 since indices start from 0 an array with 10 elements would have range 0 -> 9 and the random number expression would also have range 0 -> 9
@BadigerEngineer
@BadigerEngineer Жыл бұрын
Have always enjoyed to learn from people. Wow! You are a sniper who is 100/100 shoot to kill the concept (compliment) with a head-shot in microns (precise and concise! Super, can't appreciate enough).. Glad I am here and watching.. I am a civil engineer lately joining the party, have been exploring to find content like this. This is one of the bests. Thank you so much, you consider sharing your knowledge.. SUPER!
@Salah-YT
@Salah-YT Жыл бұрын
bro, I'm so happy u doing Javascript u can see at this moment I write this comment only in 17 hours u got 10k views this means people more love JS so please do more projects and challenges on JS so thank u bro ill follow up until the end 🙂
@sandeepnakshe4473
@sandeepnakshe4473 Жыл бұрын
as a guy who is shifting from python to javascript, this video is a gem
@JEffinger
@JEffinger Жыл бұрын
Thanks for putting the disclaimer at the front.
@timchat9_my_teleqram_id
@timchat9_my_teleqram_id Жыл бұрын
Teleqram me 👆⬆️
@Zelienter
@Zelienter Жыл бұрын
Ur welcome
@chipngo9758
@chipngo9758 Жыл бұрын
+1. Gosh I fcking hate adds.
@adityagautam4689
@adityagautam4689 Жыл бұрын
first of all Thank you SOOO much Tim and also, at 16:48, we could have directly called the deposit function again in the for statement instead of writing the while statement edit: Im facing an error if i do this, if I enter a positive number, it works fine but if i enter any string/negative number (as mentioned in the if stmt), it returns "undefined" (first time "properly" learning js ty!)
@timchat9_my_teleqram_id
@timchat9_my_teleqram_id Жыл бұрын
Teleqram me 👆⬆️
@zaheerimad5844
@zaheerimad5844 Жыл бұрын
broooooooo same thing i am thinking did you figure out whyy ??????????
@adityagautam4689
@adityagautam4689 Жыл бұрын
@@zaheerimad5844 not yet
@MidoBroski
@MidoBroski Жыл бұрын
Thanks Tim I've been waiting for you to upload a walkthrough project in JavaScript! Would it be possible to upload a video containing simple to more difficult projects purely in JS, similar to what you've done with python? I've yet to find someone who's able to articulate and teach the way you do!
@timchat9_my_teleqram_id
@timchat9_my_teleqram_id Жыл бұрын
Teleqram me👆⬆️
@ivaldirbatalha5436
@ivaldirbatalha5436 Жыл бұрын
Great project Tim! I will take advantage of this to sharp my javascript skills. Little tip here, you forgot to increment the balance after the user won some prize playing.
@timchat9_my_teleqram_id
@timchat9_my_teleqram_id Жыл бұрын
Teleqram me 👆⬆️
@Stray2Strong
@Stray2Strong Ай бұрын
Am learning the workflow of programming in js, this project has given me a good basic stracture of what i should expect and do, I enjoyed this project and liked the results. Keep them coming. Thanks
@jordanwyltk4569
@jordanwyltk4569 11 ай бұрын
Thank you! You explain things, not JUST do them!!!😁 One of the biggest issues I have had with trying to program for years is how to visualize the way the looping structure works.
@antalperge1007
@antalperge1007 Жыл бұрын
Bro, I LOVA YA! ❤ At the age of 48 (!), just started with your Python vid. Love it!
@nyanpantsu9027
@nyanpantsu9027 Жыл бұрын
thank you for doing this course, i'm a beginner of javascript and this is very helpful for me !
@nathantekeste8026
@nathantekeste8026 Жыл бұрын
what an amazing video, it shows us how u think how u structure you code and everything. Really perfect to learn javascript.
@mriit3025
@mriit3025 5 ай бұрын
perfect video to start project in javascript
@MUSHIN_888
@MUSHIN_888 Жыл бұрын
let's go! a TechwithTim video on JavaScript? yeah baby!
@MUSHIN_888
@MUSHIN_888 Жыл бұрын
whoo 4 months later and still haven't gone through it lol
@tanthanh8386
@tanthanh8386 5 ай бұрын
Thanks for your contribute. Wishing you good health!
@sunrise_7878
@sunrise_7878 11 ай бұрын
Hi Tim, thank you for this tutorial. 👏Is there a possibility that you can make a tutorial on how to build a project from start to finish with Angular?
@vicentesoto1628
@vicentesoto1628 6 ай бұрын
This is such pythonic way of writing JS, love it bro XD
@travisheldreth5021
@travisheldreth5021 10 ай бұрын
I agree. You are a very good instructor. Thank you. I couldn't get prompt sync to work for me. I switched to readline and that is working so far.
@ThaoNguyen-gc2pu
@ThaoNguyen-gc2pu Жыл бұрын
Thanks Tim, could you please make it a complete . After the coding, what is next? How do we link image and actually put on the website or an app? In addition, can we report what the player is winning from? Like, the have 3 lines, and each line has a certain symbol and that was the reason the won, or not one. Basically to report each line symbol. And keep it in their play log.
@smart-com7817
@smart-com7817 Жыл бұрын
thats the neat part, you gotta watch how to make a webpage, link the js file to it, and maybe convert it visually :)
@yessirski7868
@yessirski7868 Жыл бұрын
learn html and css to make it come alive.
@Fraidon90
@Fraidon90 Жыл бұрын
This JavaScript is a perfect course. Thanks
@ofekifrah9206
@ofekifrah9206 Жыл бұрын
Great video as always! One small note though, you used parseFloat instead of parseInt in the getNumberOfLines function altough a float shouldn't logically be a valid value for the number of lines
@timchat9_my_teleqram_id
@timchat9_my_teleqram_id Жыл бұрын
Teleqram me 👆⬆️
@jairus04
@jairus04 Жыл бұрын
I've started learning javascript this week and saw your video while taking a break and it's inspiring and very motivating. I hope i can write a code as clean as yours someday 😁 I'm going to rewatch it again once i learned all the basics of javascript and learn more from this project 😊😊
@Harry_Pcs
@Harry_Pcs 8 ай бұрын
perfect video I was looking for. youre amazing at teaching
@AutMouseLabs
@AutMouseLabs Жыл бұрын
I didn't know you could use node to get a regular terminal response to js like python in a regular terminal. This is very useful! Thanks.
@sureshbhatt363
@sureshbhatt363 Жыл бұрын
Indeed a great tutorial. You explained things throughout the way - such lectures are very hard to find here on KZbin.
@xen0076
@xen0076 Жыл бұрын
OMG you are the most enjoyable and amazing tutor there is, what a fantastic way of teaching, teaching from what return does to making a whole project. You are the best on the whole youtube
@wojciechsobiesiak
@wojciechsobiesiak Жыл бұрын
You gave me second idea today, God did in the morning and now You did. Thank You.
@groovydev
@groovydev 6 ай бұрын
Thank you so much for this tutorial! i found it really helpful as a viewer to watch your thought process live. i think learning to break down projects and think like a programmer can be one of the biggest challenges and your video helps solve that!
@griffer695
@griffer695 Жыл бұрын
Thanks for all the free videos; you're appreciated 🙏 Only problem is, there's no way we can learn javascript from this. We can slow it down and follow what you are doing, but we aren't really learning. ...don't mean anything negative...just passing my opinion. Great work on your part always 👏
@mrwan5348
@mrwan5348 Жыл бұрын
i agree
@pablowest5109
@pablowest5109 Жыл бұрын
i think the idea behind this video is just to figure out the syntax differences between the language you know and JS
@TheCodeJourney_
@TheCodeJourney_ Жыл бұрын
Great video. it was tough to understand some concepts at first while following along. At the end it was all wrapped up and made sense! It was a great insight into your thought process and how you break everything into components.
@moeharuke4662
@moeharuke4662 Жыл бұрын
i'm learning a bit of javascript as an entry level begginer, this video is funa dn good to watch, only had some little problem with the nested arrays and for of loops, hoping that later on I can learn more. thank you this video was great
@ItsStaffDaddy
@ItsStaffDaddy Жыл бұрын
This is exactly what I needed to get spun up on some JS as I'm trying to learn some web dev. I know some Java, C++/C and code in Python for work and the pacing here was perfect for someone who needed a quick rundown.
@stephanieezat-panah7750
@stephanieezat-panah7750 7 ай бұрын
me too! exactly me, I have worked in C/C++, C# .net and java, and I am comfortable in web, but I need strength in this arena
@mirjalol_shamsiddinov
@mirjalol_shamsiddinov Жыл бұрын
hi bro how u doin, i loved the project, the way u explain is so good. Thank God there is someon who understands The beginners.
@trailerhighlights8349
@trailerhighlights8349 10 ай бұрын
Tim can you make a video that uses the html & Css for the animations as well as this javascript code
@boyacosweep
@boyacosweep Жыл бұрын
I really liked this. Would love to see more. Consider having a simple visual done on PPT or an image editor for when you are trying to explain what the code is doing.
@RoxusRemo
@RoxusRemo Жыл бұрын
Yep this is what would 100% imrpove this further for people who are visual learners. I had to draw it out myself in paint to get how the for loops were working haha.
@charles-sambo
@charles-sambo Жыл бұрын
Man this just cemented my javascript learning... pushed me up a some notches. :)
@infinitydeveloper1552
@infinitydeveloper1552 Жыл бұрын
This is a amazing video to get started with javascript. And I can relate you totally for python syntax as I am also working with python (I have learned that from your videos). Good job, please adding these kind of content. Thanks
@namangokhru3715
@namangokhru3715 Жыл бұрын
what a thought process 😎, lot to learn from you.
@AlistairBaillie-r4h
@AlistairBaillie-r4h Жыл бұрын
I really enjoyed completing this project, it gave me a good understanding of using Javascript. Thanks!
@chipngo9758
@chipngo9758 Жыл бұрын
Awesome stuff man. Really appreciate what you did. I like the delivery and entire explanation of what goes after what, which is truly important to understand if you taking it first time. Hope there was an html integration with it as well. But overall it looks fine. Thank you.
@maryanlsiben6244
@maryanlsiben6244 9 ай бұрын
thank you Tim , this was a great project ,I am learning JS with you
@MolamikeDevs
@MolamikeDevs 11 ай бұрын
Really love this video as a beginner I you have me how to use function inside a function. Thank you man🤝
@KUSTOMHIPHOP
@KUSTOMHIPHOP Жыл бұрын
For the game() function, just wrap it with " while(balance > 0) " this is more understandable imo
@LesK-n2s
@LesK-n2s 8 ай бұрын
I have learned so much from you. You do such a great job!! Thank You!!
@MikeDest
@MikeDest Жыл бұрын
Already over thought this and now i've introduced 3d models of reels and using WebGL. Might as well bring in sound too.
@timchat9_my_teleqram_id
@timchat9_my_teleqram_id Жыл бұрын
Teleqram me 👆⬆️
@karanbatra
@karanbatra 2 ай бұрын
thankyou sir , we want more videos like this
@nickoalbes6546
@nickoalbes6546 Жыл бұрын
Thanks for this, I really want to learn JavaScript and this indeed helped.
@keesdejong5712
@keesdejong5712 Жыл бұрын
if this is a turorial for beginners, i am Santa-claus. Never the less, great content.
@Siddharth3029
@Siddharth3029 Жыл бұрын
bro this is for beginner also
@AttilioKocourek
@AttilioKocourek 11 ай бұрын
Это требует определенных знаний и опыта. Спасибо, что поделились очередной рабочей связкой👍
@zyronheit
@zyronheit 4 ай бұрын
Dude, That's Fantabulous
@joshuaarinaitwe8351
@joshuaarinaitwe8351 6 ай бұрын
The thought process is what takes Tim to the next level...😂
@ekeminios
@ekeminios Жыл бұрын
Great content! Thanks for sharing Tim!
@TechWithTim
@TechWithTim Жыл бұрын
Np!
@onurislak
@onurislak Жыл бұрын
very creative solution. I want like this projects more.
@itekkon5893
@itekkon5893 Жыл бұрын
im just trying to get into javascript and really enjoyed this form of content. Thanks for sharing. Kinda bummed that we didnt built the fancy animation? The intro at 00:55 kinda fooled me there haha. But nonetheless i got some valuable insight and learned alot!
@soccerstarszollo5422
@soccerstarszollo5422 Жыл бұрын
Love watching your vids. I like that you you make small typos, syntax errors, math errors and correct as you go along. This is how coding is in real life, it's not perfect and we do make those little errors at times, for me anyway 🙂
@goddeyjunior5940
@goddeyjunior5940 5 ай бұрын
Tim thanks for this wonderful video. I learnt so much
@jkkjkkas
@jkkjkkas Жыл бұрын
Actually speaking to a real human being, hit different now a day
@beachphone-t7g
@beachphone-t7g Жыл бұрын
10:09 excellently explained sir thank you
@ryuu5109
@ryuu5109 9 ай бұрын
This is so freaking cool, Thank you so much sir! you light up my motivation to still keep grinding and learning throughout this tutorial i really enjoyed cloning this game that you build, i felt so much good and wanted to learn more
@DailyNevFacts
@DailyNevFacts 6 ай бұрын
Thank you for sharing this Tim dude.
@marcthibault2854
@marcthibault2854 Жыл бұрын
What keyboard are you using? Those clicks are satisfying
@beelaw4830
@beelaw4830 Жыл бұрын
Awesome tutorial! Definitely learned a lot. One quick thing I noticed, for betting the number of lines, we copied over the parseFloat and similar conditions, whereas I believe it should have been an array like [1,2,3].includes(numberOfLines) and maybe parseInt since it has to be exactly 1, 2 or 3 instead of something like 2.2. Let me know what you think!
@stephanieezat-panah7750
@stephanieezat-panah7750 7 ай бұрын
from my 30 years in programming, I will tel you that there are half a dozen ways to do anything : )
@ceriusgeek2749
@ceriusgeek2749 Жыл бұрын
Even though this tutorial might be helpful to beginners, the title is extremely misleading. You cannot and will not learn JavaScript by doing an hour and 10-minute tutorial. If you're a beginner, it will take you several months or more while investing at least 3 - 4 hours daily to learn and understand enough of the basics to be hirable as a junior.
@daanw6270
@daanw6270 Жыл бұрын
Unfortunately, clickbait is incredibly effective
@a1badmedicinekillz423
@a1badmedicinekillz423 Жыл бұрын
I'm sure some will take it as: this one project applies lot of concepts in the language
@Rikmik1803
@Rikmik1803 Жыл бұрын
Literally in the first minute. he explains the most suitable audience for this video is meant to be people with some background in coding. Then, I don't see any misleading. Having some programming knowledge, I was looking into exactly something like this, to get a quick start on a project (crash course) rather than a front 10 hours straight lesson. Then I find the title appropriate
@teenytinytoons
@teenytinytoons Жыл бұрын
Several months ain’t happening. Let’s get real. Can take easily a year or two
@ceriusgeek2749
@ceriusgeek2749 Жыл бұрын
​@flippingpennies It can take a year or two of intense study to become intermediate. However, to get hired at the junior level, 5 months of anywhere between 21 - 28 hours of study a week will be enough. Especially if you're studying correctly with the right resources.
@binsitt
@binsitt Жыл бұрын
Tim, I just read "Clean Code" from Robert C. Martin and feel urged to teach beginners also how to write code like "well written prose" from "someone who cares about the reader". What are your thoughts on that? Anyways, thank you very much.
@ivaldirbatalha5436
@ivaldirbatalha5436 Жыл бұрын
Yea, Tim doing a tutorial on clean code and clean architecture with some examples would be great!
@timchat9_my_teleqram_id
@timchat9_my_teleqram_id Жыл бұрын
Teleqram me 👆⬆️
@Global_Reality-bcn
@Global_Reality-bcn Жыл бұрын
I admire the way you explain thank you a lot hope to see you in Barcelona
@adventurewarriors9691
@adventurewarriors9691 Жыл бұрын
I love this video, hope you upload more videos javascript projects, thank you
@ManojkumarR-h3g
@ManojkumarR-h3g 3 ай бұрын
The project is very impressive. Can you please create this same project with frontend html , css and js?
@winber2324
@winber2324 2 ай бұрын
30:02 24:14 game
5 Mini JavaScript Projects - For Beginners
1:45:09
Tech With Tim
Рет қаралды 101 М.
TypeScript Full Course - From Beginner to Advanced
3:54:02
Tech With Tim
Рет қаралды 33 М.
Симбу закрыли дома?! 🔒 #симба #симбочка #арти
00:41
Симбочка Пимпочка
Рет қаралды 3,8 МЛН
Walking on LEGO Be Like... #shorts #mingweirocks
00:41
mingweirocks
Рет қаралды 7 МЛН
Миллионер | 3 - серия
36:09
Million Show
Рет қаралды 1,9 МЛН
All The JavaScript You Need To Know For React
28:00
PedroTech
Рет қаралды 653 М.
Algorithms and Data Strutures FULL BEGINNER COURSE
2:43:28
Robot Maze
Рет қаралды 675
Learn Python With 5 Projects - From Beginner to Advanced
2:51:09
Tech With Tim
Рет қаралды 47 М.
NestJs Course for Beginners - Create a REST API
3:42:09
freeCodeCamp.org
Рет қаралды 1,5 МЛН
I Wanna Learn Golang - Day 5
3:58:38
seyLuVODS
Рет қаралды 19 М.
C Programming Tutorial for Beginners
3:46:13
freeCodeCamp.org
Рет қаралды 14 МЛН
Learn Python With This ONE Project!
55:04
Tech With Tim
Рет қаралды 1,8 МЛН
Learn Web Development And ACTUALLY Get A Job | Ultimate Guide
1:33:52
James Cross
Рет қаралды 1,5 МЛН
Симбу закрыли дома?! 🔒 #симба #симбочка #арти
00:41
Симбочка Пимпочка
Рет қаралды 3,8 МЛН