Get TypeAI PREMIUM now! Start your FREE trial by clicking the link here: bit.ly/TechWithTimFeb24
@djlclopez1289 ай бұрын
Thank you for making beginner projects and for explaining everything in detail. I appreciate it!
@zixinzhang61575 ай бұрын
Hi Tim! Thank you for the wonderful projects!!! I found a way to solve the startTimer() funtion in the 4th project Stop Watch! You could use "return" instead of "stopTimer()" in the "startTimer()" function, because the "stopTimer()" lags the program for 1 sec, but "return" will just return the time and continue running! We also just need to add a "isPaused" variable and make it true when we clic "stop" to pause the program. let isPaused = true function startClock() { if (isPaused === true) { interval = setInterval(timer, 1000); isPaused = false; } if (isPaused === false) { if (interval) return; } interval = setInterval(timer, 1000); } function stopClock() { clearInterval(interval) isPaused = true }
@asi694205 ай бұрын
for anyone who wants to know [what to learn before making projects]- 1)learn basics of html and css 2)Basics of JS 3)Basics of DOM manipulation and JS events
@espanglishGarage7 ай бұрын
Awesome video! Now for newbies > instead of typing html:5 you can simply type exclamation and hit enter. this ! and press enter, it will create same html template.... I LOVE this simple tutorials, they are easy to follow and we can learn a TON! Thanks Tim! Keep it up!!!
@viktoria72817 ай бұрын
+ information about the Palindrome Checker project: const value = input.value; When you use ".value" to access the value of an input element, it retrieves whatever text or data the user has entered into that field. .value is a property in JavaScript that retrieves the current value of an input field in a form. Essentially, it returns the value entered into an HTML input element, such as a text box.
@mohammedshibil3156 ай бұрын
For the past month, I've been consistently tuning in to your videos, they are accommodating! Your dedication to creating valuable content is truly admirable. I just wanted to take a moment to commend you on your hard work and wish you all the success in building an even greater community.
@zixinzhang61575 ай бұрын
Hi Tim! Thank you for the wonderful projects!!! I found a way to solve the startTimer() funtion in the 4th project Stop Watch! You could use "return" instead of "stopTimer()" in the "startTimer()" function, because the "stopTimer()" lags the program for 1 sec, but "return" will just return the time and continue running! We also just need to add a "isPaused" variable and make it true when we clic "stop" to pause the program. let isPaused = true function startClock() { if (isPaused === true) { interval = setInterval(timer, 1000); isPaused = false; } if (isPaused === false) { if (interval) return; } interval = setInterval(timer, 1000); } function stopClock() { clearInterval(interval) isPaused = true }
@learnMoreToCode4 ай бұрын
nice solution! what I just did here was disabling the button then making it clickable again after clicking stop button haha
@Chan-L-b7l6 ай бұрын
A long time of me searching for a project tutorial that's not 200+ lines of code, and is... actually practical
@MikeBora9 ай бұрын
Your explanations are so accurate, you've encountered every problem that a very new coder can get, amazing 🤩
@taaantin3 ай бұрын
Im trying to learn programming rn and eventhough the internet is full of information its surprisingly hard to find contend which i would deem as beginner friendly. Somehow you managed to make these projekts fun, informational and easy to understand for stupid people like me. I aprechieate that a lot. Tysm
@HA-sz8mu9 ай бұрын
maaaaan, the level of detailed explanations is top notch! Pleaaaaase keep it up and upload more javascript projects, perhaps increasing the complexity slowly Love your content
@TechWithTim9 ай бұрын
Glad you like it!
@HA-sz8mu9 ай бұрын
@@TechWithTim OFCOURSE And the best part is that i saw you uploaded this right at the time when im learning Javascript 😂. So its just reinforcing a lot of the concepts Also, i was wondering why this hasn't gotten more comments or views considering the size of ur channel :) But i do hope more people benefit off this
@svnbeats67007 ай бұрын
@@HA-sz8muhows the journey so far?
@Big_chicken-ok8gc9 ай бұрын
Amazing video! Finally the js video we all needed! Greatly appreciated Tim. ❤️
@MwapeMwelwa-wn9ed9 ай бұрын
Saving the video to come and use it during my project. Thank you so much.
@nathanielhollis746329 күн бұрын
Trying to understand JS a little better. So I appreciate these short projects to help drive JS operations home. I picked up HTML and CSS quickly. Interesting you use "HTML:5" to start your HTML projects. I learned typing " ! " + tab will generate the same HTML opening. Same kind of concept with any HTML elements: h1 + tab will give you an open and close element for an h1. Or button...or any element. Saves me so much time! Anyways, thanks again for these HTML + JS projects!😊
@bryrivera28 ай бұрын
Suuuper helpful tutorials for learning js syntax, even for more experienced programmers. Thankss
@justchecking126 ай бұрын
you know what? I actually got better at syntax and troubleshooting while also learning data structures without having any js101 or any kind of lectures that begin intro to js. Project based learning is the way to go guys
@shoaibshuja20047 ай бұрын
This was wonderful Mr.Tim and thank you. Will you make intermediate projects following this video.
@TalkkwithmeeАй бұрын
the last project went over my head for first time, had to watch it 3 4 times to actually know what's happening😂😂😂😂 great tutotrial✌✔❤
@joe22719 ай бұрын
Thanks for posting so many tutorial videos like this again Tim. Can you do an advanced Flask Series one of these days? Maybe even Flask with React?? I'll be a patreon or something LOL
@MikeCode-iy9sb4 ай бұрын
I mean, I've watched tons of tutorial, and this one is like one of the best. It's so easy to understand, please continue making videos
@maqbollodhraofficial9154 ай бұрын
Hii tim love from Pakistan ,i am Maqbol ahmad from Pakistan when i became a MERN stack developer ................. i wanted to be start work with you as a begineer devlper
@RightonBass3 ай бұрын
Hey, wouldnt call it beginner friendly, but it gave me a different view of how to use Javascript therefore I appreciate it!
@franciscorios73746 ай бұрын
Thanks!
@SuffynuxКүн бұрын
Best Video and Projects for beginner
@ocireocire9 ай бұрын
Pretty useful projects, i will give a try
@jyotipandey6162 ай бұрын
Done with the first mini project, great video
@alimihakeem8418 ай бұрын
Thanks Tim. I love the way you explained in detailed. I'm just suggesting probably you should as well make some react projects. "Learn react by building 5 projects"
@sompagnimdisankara46625 ай бұрын
hey thank for your tutorial it was very well demonstrated
@softwhere079 ай бұрын
That to do list one seems pretty interesting. I wonder how you would do that one with python. I mean like the whole adding reminders and deleting them when done type thing.
@Indian-cx5is9 ай бұрын
Thank you so much 🙏😊🎉❤
@rahmanmusah44706 ай бұрын
you are a fantastic teacher. you're my Kevin Powell for Javascript. more js content please. 😢❤
@livinginglassАй бұрын
You can also use the live server with save typing so it automatically saves as you type
@FaunFunc9 ай бұрын
Bro am making a 2d game engine using Javascript. Pray for me 😅
@rockerzhackers7999 ай бұрын
Rip
@santoshshah15239 ай бұрын
God bless you bro 😅
@MegaProggy9 ай бұрын
Please give us a update
@FaunFunc9 ай бұрын
@@MegaProggy will do. I'll be posting on my yt channel, sub to get notified 😊
@rahmanmusah44706 ай бұрын
Ameen
@Mani_OnFire7 ай бұрын
Hi Time, can you please make a video on simple portfolio using html, css and js for beginners.
@BenRogersWPG9 ай бұрын
Great video! Tim, did you get a new keyboard?! It sounds different from your clicky one. It sounds so good!
@TechWithTim9 ай бұрын
I did! Glad you like it.
@abbas_0213 ай бұрын
Thanks, it was very helpful, and I really liked the theme. What's its name?
@YieFallahАй бұрын
7:38 You can just type ! And hit tab key l, it'll generate the boilerplate
@levon95 ай бұрын
Thank you for doing this, very helpful.
@DeltaXML_Ltd9 ай бұрын
Amazing video for those who need a bit of guidance!
@noorrehman63442 ай бұрын
Thanks sir for that great tutorial Love from Pakistan
@briandall85915 ай бұрын
Hey @TechWithTim, I don't know if you could/should edit this one, or if (more likely) you could link to a new video you'd create where you do it, but could you demonstrate how you would add unit tests to these projects? I know there's multiple ways to do it, but I'm interested in what and how you'd choose to do it. . . .
@HocusPolars2 ай бұрын
Shortcut to automatically write the html code at the start is exclamation mark and tab key ! + tab
@ReshtinZegham7 ай бұрын
Awesome, thanks for the Tutorial
@not_amanullah8 ай бұрын
thanks ❤
@KhatibiWorkStation5 ай бұрын
amazing and easy to understand codes
@vaibhavydarshan42933 ай бұрын
this helped me out so much!
@siddharththeone093 ай бұрын
That car sound was the best part of video
@BenRogersWPG9 ай бұрын
Great video!
@mahmoodhashemi217 ай бұрын
Thank you so much guru 😚😚
@xviewmytubex8 ай бұрын
Is JS designed so every script requires starting with variables, as most languages are? Great vid! Thanks! =)
@LesK-n2s8 ай бұрын
I love your videos! You should teach online with Bayvalley Tech
@Arhamjamshaid-f6g2 ай бұрын
beautiful video
@SadicSsentongo5 ай бұрын
Thanks tim .
@garrettsmith3159 ай бұрын
You should do these same projects with a few of the different front end frameworks. React first please!
@TechWithTim9 ай бұрын
Great suggestion!
@garrettsmith3159 ай бұрын
@@TechWithTim I have a few more as a long time channel fan and budding developer myself! Reach out anytime!
@wastedlife48422 ай бұрын
The fact that in the STOP WATCH project you set minutes and seconds as const (not let), destroys my understanding of const vs. let ... I thought, const cannot change - yet it changes every seccond. :/
@tech_with_unknown9 ай бұрын
hey Tim great video do you have any tips or tricks cuz i just posted 3 vids and wanna know how to make my channel like your channel
@petresebastian85789 ай бұрын
Hi Tim! Can you do this kind of videos with Java? 5 mini projects or 20 maybe, idk. Thank you for your help and work!!! You are awesome !
@GelzintVidaurre9 ай бұрын
Great job ❤️🔥🔥🔥
@jeseviso-s2u19 күн бұрын
Timi tatman the only guy who I watch the whole add.
@BiniVEVO2 ай бұрын
what keyboard switches are you using?
@willlywillly9 ай бұрын
Thank you Tim for another great video! Can I contact for a consultation on a graduate degree? 👍
@xviewmytubex8 ай бұрын
Can different JS be used for these projects, or is your particular use related to some professional, current JS used in the industry? Thanks! =)
@WesamKhalil-wn5vc4 ай бұрын
would any of these be worth putting on a resume for interships?
@donkeyblade4 ай бұрын
I wouldn't as these are learning projects but better than nothing
@Joe-qp9ix3 ай бұрын
I paused the videos a few times and used switch/case instead of a while loop to loop through the quotes generator. But I couldn't figure out how to apply the usedIndexes variable to work with switch/case
@mavsocc5 ай бұрын
nice. javascript and ferraries.
@esrx7a9 ай бұрын
Hey Tim, you know what, we need to talk. Thank you.
@mdzunaed74143 ай бұрын
which mechanichal switch are you using in this video?
@MahmoudMohamed-wj3ve2 ай бұрын
I need to know the THEME u using for VS Code plzzzzzzzzzz
@deviiancee765Ай бұрын
whats your keyboard
@lucaskellerlive3 ай бұрын
Is value an HTML keyword? How did JS know value in this case was value from the input and not return undefined?
@mrfrkz12354 ай бұрын
hey i like to know more about JS it possible can we have an meeting
@PabloSystemas24 күн бұрын
21:00 Yes, you totally lost me
@jayroche1357 ай бұрын
isn't the way you did the to-do list like.. a little over engineered?
@s_liyarli6 ай бұрын
agreed bro
@awa99023 ай бұрын
Is that thing called dom event??????
@Eswar.9 ай бұрын
i have these skills ml,python,sql,nlp(basics),js,react js,express js ,tailwind,typescript (basic)prisma postgres.. suggest me some best projects to get my first job i graduated in 23 any suggestions and my biggest issue is i understand most of the things but cant code my self(tutorial hell ig) any help will be appreciated thanx
@deadlylive_gaming71549 ай бұрын
do rethink about do developers really need to have the skills of can code each every thing that requires as as skills. i think most things are ok to be just knowing & understanding at specialist level , then the world is just acquiring to ai & low code tools.
@ChrisLeftBlank8 ай бұрын
'':52 wouldn't you go slow through the difficult problems?
@userXoxo_beckyАй бұрын
my background color isn't showing
@EzraSchroeder6 ай бұрын
@ 36:58 how come if i put the tags in the **head** instead of the bottom of the **body** it won't work?
@perrychamileke5 ай бұрын
Because if their in the head together it'll load the javascript before the html so it's like the page isn't fully formed when it executes the code.
@maicon4847 ай бұрын
Nice good
@t.a-84699 ай бұрын
Civic 😊
@subatt8 ай бұрын
i do the same thing you do but not working
@christopherkeith24044 ай бұрын
My buttons will not change colors
@stephanieezat-panah77504 ай бұрын
paste your code. we cannot help you without seeing it.
@ShamMohammdi5 ай бұрын
Please be my mentor I lost my live no one to guide me😢😢😢😢😢
@shoaibshuja20047 ай бұрын
❤
@laurenazareth398 ай бұрын
Hi! Do you believe in God?
@Metamemesss8 ай бұрын
are you hitting on tim?
@stephanieezat-panah77504 ай бұрын
hi. is this stupid?
@laurenazareth394 ай бұрын
@@stephanieezat-panah7750 For the ones who can't see the small details, yes it is.
@loosabway34005 ай бұрын
Can't understand why you used a Set (with all of the added complexity size/length/inspecting contents etc )when you just could have compared the existing list to a new one?
@MwapeMwelwa-wn9ed9 ай бұрын
Saving the video to come and use it during my project. Thank you so much.
@boredape73049 ай бұрын
do it now bro. by that time you would have better capacity to make better