No video

5 Mini JavaScript Projects - For Beginners

  Рет қаралды 71,102

Tech With Tim

Tech With Tim

Күн бұрын

Пікірлер: 113
@TechWithTim
@TechWithTim 6 ай бұрын
Get TypeAI PREMIUM now! Start your FREE trial by clicking the link here: bit.ly/TechWithTimFeb24
@djlclopez128
@djlclopez128 6 ай бұрын
Thank you for making beginner projects and for explaining everything in detail. I appreciate it!
@zixinzhang6157
@zixinzhang6157 2 ай бұрын
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 }
@Haccod-kg2ou
@Haccod-kg2ou 2 ай бұрын
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
@mohammedshibil315
@mohammedshibil315 4 ай бұрын
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.
@zixinzhang6157
@zixinzhang6157 2 ай бұрын
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 }
@learnMoreToCode
@learnMoreToCode Ай бұрын
nice solution! what I just did here was disabling the button then making it clickable again after clicking stop button haha
@viktoria7281
@viktoria7281 4 ай бұрын
+ 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.
@JincoWill
@JincoWill 12 күн бұрын
Yes, and also we use .value for input, text area and some select boxes, whereas you can use textContent for almost any node in the document
@espanglishGarage
@espanglishGarage 4 ай бұрын
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!!!
@JincoWill
@JincoWill 12 күн бұрын
Yeah man, shift + 1 on my keyboard saves me a lot of time, good thing they implemented this and thank u for sharing this with other newbie's,
@HA-sz8mu
@HA-sz8mu 6 ай бұрын
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
@TechWithTim
@TechWithTim 6 ай бұрын
Glad you like it!
@HA-sz8mu
@HA-sz8mu 6 ай бұрын
@@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
@svnbeats6700
@svnbeats6700 4 ай бұрын
@@HA-sz8muhows the journey so far?
@MikeBora
@MikeBora 6 ай бұрын
Your explanations are so accurate, you've encountered every problem that a very new coder can get, amazing 🤩
@franciscorios7374
@franciscorios7374 3 ай бұрын
Thanks!
@taaantin
@taaantin 27 күн бұрын
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
@GreenShinyPentagon
@GreenShinyPentagon 3 ай бұрын
A long time of me searching for a project tutorial that's not 200+ lines of code, and is... actually practical
@Big_chicken-ok8gc
@Big_chicken-ok8gc 6 ай бұрын
Amazing video! Finally the js video we all needed! Greatly appreciated Tim. ❤️
@bryrivera2
@bryrivera2 5 ай бұрын
Suuuper helpful tutorials for learning js syntax, even for more experienced programmers. Thankss
@MwapeMwelwa-wn9ed
@MwapeMwelwa-wn9ed 6 ай бұрын
Saving the video to come and use it during my project. Thank you so much.
@MikeCode-iy9sb
@MikeCode-iy9sb 2 ай бұрын
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
@techknight2024
@techknight2024 4 ай бұрын
This was wonderful Mr.Tim and thank you. Will you make intermediate projects following this video.
@joe2271
@joe2271 6 ай бұрын
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
@sompagnimdisankara4662
@sompagnimdisankara4662 2 ай бұрын
hey thank for your tutorial it was very well demonstrated
@levon9
@levon9 2 ай бұрын
Thank you for doing this, very helpful.
@Indian-cx5is
@Indian-cx5is 6 ай бұрын
Thank you so much 🙏😊🎉❤
@ocireocire
@ocireocire 6 ай бұрын
Pretty useful projects, i will give a try
@FaunFunc
@FaunFunc 6 ай бұрын
Bro am making a 2d game engine using Javascript. Pray for me 😅
@rockerzhackers799
@rockerzhackers799 6 ай бұрын
Rip
@santoshshah1523
@santoshshah1523 6 ай бұрын
God bless you bro 😅
@MegaProggy
@MegaProggy 6 ай бұрын
Please give us a update
@FaunFunc
@FaunFunc 6 ай бұрын
@@MegaProggy will do. I'll be posting on my yt channel, sub to get notified 😊
@rahmanmusah4470
@rahmanmusah4470 4 ай бұрын
Ameen
@thecoderfilez
@thecoderfilez 3 күн бұрын
great intro projects. thanks for the knowledge
@RightonBass
@RightonBass 9 күн бұрын
Hey, wouldnt call it beginner friendly, but it gave me a different view of how to use Javascript therefore I appreciate it!
@BenRogersWPG
@BenRogersWPG 6 ай бұрын
Great video! Tim, did you get a new keyboard?! It sounds different from your clicky one. It sounds so good!
@TechWithTim
@TechWithTim 6 ай бұрын
I did! Glad you like it.
@softwhere07
@softwhere07 6 ай бұрын
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.
@siddharththeone09
@siddharththeone09 29 күн бұрын
That car sound was the best part of video
@vaibhavydarshan4293
@vaibhavydarshan4293 17 күн бұрын
this helped me out so much!
@abbas_021
@abbas_021 Ай бұрын
Thanks, it was very helpful, and I really liked the theme. What's its name?
@alimihakeem841
@alimihakeem841 5 ай бұрын
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"
@justchecking2470
@justchecking2470 3 ай бұрын
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
@ReshtinZegham
@ReshtinZegham 4 ай бұрын
Awesome, thanks for the Tutorial
@BenRogersWPG
@BenRogersWPG 6 ай бұрын
Great video!
@Mani_OnFire
@Mani_OnFire 4 ай бұрын
Hi Time, can you please make a video on simple portfolio using html, css and js for beginners.
@HocusPolars
@HocusPolars 2 күн бұрын
Shortcut to automatically write the html code at the start is exclamation mark and tab key ! + tab
@rahmanmusah4470
@rahmanmusah4470 4 ай бұрын
you are a fantastic teacher. you're my Kevin Powell for Javascript. more js content please. 😢❤
@KhatibiWorkStation
@KhatibiWorkStation 2 ай бұрын
amazing and easy to understand codes
@DeltaXML_Ltd
@DeltaXML_Ltd 6 ай бұрын
Amazing video for those who need a bit of guidance!
@maqbollodhraofficial915
@maqbollodhraofficial915 Ай бұрын
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
@briandall8591
@briandall8591 2 ай бұрын
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. . . .
@not_amanullah
@not_amanullah 5 ай бұрын
thanks ❤
@mdzunaed7414
@mdzunaed7414 5 күн бұрын
which mechanichal switch are you using in this video?
@user-rt4rp5yb4r
@user-rt4rp5yb4r 2 ай бұрын
Thanks tim .
@Joe-qp9ix
@Joe-qp9ix 29 күн бұрын
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
@user-ko1cw6mv4q
@user-ko1cw6mv4q 6 ай бұрын
Great job ❤️🔥🔥🔥
@garrettsmith315
@garrettsmith315 6 ай бұрын
You should do these same projects with a few of the different front end frameworks. React first please!
@TechWithTim
@TechWithTim 6 ай бұрын
Great suggestion!
@garrettsmith315
@garrettsmith315 6 ай бұрын
@@TechWithTim I have a few more as a long time channel fan and budding developer myself! Reach out anytime!
@lucaskellerlive
@lucaskellerlive 22 күн бұрын
Is value an HTML keyword? How did JS know value in this case was value from the input and not return undefined?
@user-rg7ec9cn7d
@user-rg7ec9cn7d 5 ай бұрын
I love your videos! You should teach online with Bayvalley Tech
@mavsocc
@mavsocc 2 ай бұрын
nice. javascript and ferraries.
@xviewmytubex
@xviewmytubex 5 ай бұрын
Is JS designed so every script requires starting with variables, as most languages are? Great vid! Thanks! =)
@mahmoodhashemi21
@mahmoodhashemi21 4 ай бұрын
Thank you so much guru 😚😚
@mrfrkz1235
@mrfrkz1235 Ай бұрын
hey i like to know more about JS it possible can we have an meeting
@xviewmytubex
@xviewmytubex 5 ай бұрын
Can different JS be used for these projects, or is your particular use related to some professional, current JS used in the industry? Thanks! =)
@tech_with_unknown
@tech_with_unknown 6 ай бұрын
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
@WesamKhalil-wn5vc
@WesamKhalil-wn5vc Ай бұрын
would any of these be worth putting on a resume for interships?
@donkeyblade
@donkeyblade Ай бұрын
I wouldn't as these are learning projects but better than nothing
@jayroche135
@jayroche135 4 ай бұрын
isn't the way you did the to-do list like.. a little over engineered?
@s_liyarli
@s_liyarli 4 ай бұрын
agreed bro
@petresebastian8578
@petresebastian8578 6 ай бұрын
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 !
@willlywillly
@willlywillly 6 ай бұрын
Thank you Tim for another great video! Can I contact for a consultation on a graduate degree? 👍
@awa9902
@awa9902 18 күн бұрын
Is that thing called dom event??????
@EzraSchroeder
@EzraSchroeder 3 ай бұрын
@ 36:58 how come if i put the tags in the **head** instead of the bottom of the **body** it won't work?
@perrychamileke
@perrychamileke 2 ай бұрын
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.
@Eswar.
@Eswar. 6 ай бұрын
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_gaming7154
@deadlylive_gaming7154 6 ай бұрын
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.
@user-be2bs1hy8e
@user-be2bs1hy8e 6 ай бұрын
'':52 wouldn't you go slow through the difficult problems?
@esrx7a
@esrx7a 6 ай бұрын
Hey Tim, you know what, we need to talk. Thank you.
@subatt
@subatt 5 ай бұрын
i do the same thing you do but not working
@maicon484
@maicon484 4 ай бұрын
Nice good
@christopherkeith2404
@christopherkeith2404 Ай бұрын
My buttons will not change colors
@stephanieezat-panah7750
@stephanieezat-panah7750 Ай бұрын
paste your code. we cannot help you without seeing it.
@t.a-8469
@t.a-8469 6 ай бұрын
Civic 😊
@askjfjawjhwahwjehjsjah1668
@askjfjawjhwahwjehjsjah1668 9 күн бұрын
These projects are not for totally beginners, you need to have some sort of control of the basics of html and JS in order to hang up with this video.
@techknight2024
@techknight2024 4 ай бұрын
@ShamMohammdi
@ShamMohammdi 2 ай бұрын
Please be my mentor I lost my live no one to guide me😢😢😢😢😢
@laurenazareth39
@laurenazareth39 5 ай бұрын
Hi! Do you believe in God?
@Aiden-sf3ns
@Aiden-sf3ns 5 ай бұрын
are you hitting on tim?
@stephanieezat-panah7750
@stephanieezat-panah7750 Ай бұрын
hi. is this stupid?
@laurenazareth39
@laurenazareth39 Ай бұрын
@@stephanieezat-panah7750 For the ones who can't see the small details, yes it is.
@loosabway3400
@loosabway3400 2 ай бұрын
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-wn9ed
@MwapeMwelwa-wn9ed 6 ай бұрын
Saving the video to come and use it during my project. Thank you so much.
@boredape7304
@boredape7304 6 ай бұрын
do it now bro. by that time you would have better capacity to make better
All The JavaScript You Need To Know For React
28:00
PedroTech
Рет қаралды 603 М.
Build this JS calculator in 15 minutes! 🖩
15:20
Bro Code
Рет қаралды 505 М.
娜美这是在浪费食物 #路飞#海贼王
00:20
路飞与唐舞桐
Рет қаралды 5 МЛН
Люблю детей 💕💕💕🥰 #aminkavitaminka #aminokka #miminka #дети
00:24
Аминка Витаминка
Рет қаралды 532 М.
Mastering JavaScript - EVERYTHING You Need To Know
13:28
Tech With Tim
Рет қаралды 28 М.
How To Practice Programming So You Actually Get Good
15:46
Tech With Tim
Рет қаралды 133 М.
Frontend Web Development Projects that got me hired
10:38
James Cross
Рет қаралды 280 М.
Learn JavaScript With These 4 Projects!
1:10:00
Tech With Tim
Рет қаралды 60 М.
12 VS Code Extensions to INCREASE Productivity 2024
27:13
Devression
Рет қаралды 663 М.
I learned to code from scratch in 1 year. Here's how.
41:55
Thomas Frank
Рет қаралды 400 М.
Only Noobs Build Beautiful Websites
18:13
Sajid
Рет қаралды 96 М.
How to MASTER Javascript FAST in 2023
12:49
Internet Made Coder
Рет қаралды 355 М.
Learn Python With This ONE Project!
55:04
Tech With Tim
Рет қаралды 1,7 МЛН