JavaScript Full Course for Beginners | Complete All-in-One Tutorial | 8 Hours

JavaScript Full Course for Beginners | Complete All-in-One Tutorial | 8 Hours

Dave Gray

3 года назад

638,350 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

Dave Gray
Dave Gray - 20.01.2021 19:08

No fluff intros or extra talking in this video. Nearly 8 full hours of code and instruction to help you start from scratch and level up. I bookmarked all 28 chapters in the description. If you tackle one lesson per day, you'll complete the full course in about one month. Post questions in the comments below. ⬇⬇⬇

Ответить
Mohammad Noori
Mohammad Noori - 18.09.2023 20:18

Thank you for your kindness Mr.Gray
For me and the other people like me in Iran your free and completely videos are best source for learning

Ответить
X ZEX
X ZEX - 18.09.2023 05:28

as a python developer who is learning JS , and already is in the middle of some other good Js tutorial (both video and web sites) when I see some of your python videos , I said to myself I got to see this guy JS tutorial , and I really shocked how good this tutorial is both for beginners and those who know other languages and want the fastest possible way to get to the core of things. It really make me to stop all my other tutorials ( except Bro code) and like I already didn't know most of the things , I dont want to lose a second of this tutorial. it is the greatest , it really don't waste your time and I really appreciate this ,whilst the beginners also have a safe speed to get to expert stuff as soon as they possibly can.

Ответить
Roomian
Roomian - 16.09.2023 14:14

I LOVE YOU PROFESSOR DAVE.

Ответить
Martin Owusu
Martin Owusu - 13.09.2023 11:50

Hello Dave, thanks for all you do for we the beginners. Unfortunately I'm stuck at the DOM manipulation. I can't follow along because it doesn't let us see the content of the HTML you're working with. It only focuses on the javascript document. I need help sir.

And I'm grateful to you and your videos thus far!!

Ответить
Tata pramod
Tata pramod - 10.09.2023 11:23

Finally completed the entire course! It was very informative :) and I had to pause the video a lot! I did take notes and almost written a mini-novel haha! I am also practicing while doing the course and I need to practice a lot as well! thanks a lot! you really are a great instructor :)

Ответить
syed majid ali Shah
syed majid ali Shah - 19.08.2023 14:11

Dave, best of the best videos all the way through. my suggestion : please improve the voice quality, i m struggling to listen aloud even with max volume.

Ответить
Immanuel Chukwudubem
Immanuel Chukwudubem - 18.08.2023 18:28

I didn't understand that lastIndexOf() in the string method.

Ответить
sayed reza omid
sayed reza omid - 15.08.2023 10:19

Hi This is Omid from Afghanistan ! Mr. Gray you are really a genius and the way of your teaching is unique.

Ответить
SquaredbyX
SquaredbyX - 13.08.2023 06:00

Nan is an acronym, Not a Number.

Ответить
Tel Her
Tel Her - 11.08.2023 02:11

I watched your html project video and couldn't help but notice how much value you've shared on this channel. I found myself watching your other videos because they are so easy to understand.

Friends if you're seeing this, PLEASE hit the subscribe button. This channel is a pure gem and deserves far more recognition.

Ответить
Florin Narcis Badescu
Florin Narcis Badescu - 09.08.2023 15:16

Coming from C# to js its kinda paintfull. C# its so elegant

Ответить
Laterz Social
Laterz Social - 05.08.2023 19:42

Great course Dave, appreciate it!

Ответить
Juliet Iroka
Juliet Iroka - 01.08.2023 22:52

Best JS tutorial I have seen so far, that's for this. I look forward to building projects with your tutorial, thanks @codefi for making me know about Dave and using his tutorial.

Ответить
The Big Business Ideas.
The Big Business Ideas. - 01.08.2023 02:36

Dave Gray, i am from Nigeria. I just want to thank you fron overseas.

Ответить
Jack Warner
Jack Warner - 30.07.2023 09:46

Dave, this is a fantastic course just like your HTML and CSS courses. I'm going to watch this properly and try and learn a bit more about Javascript as I've always found it baffling.

Ответить
Anthony Paul Mabulay
Anthony Paul Mabulay - 30.07.2023 06:51

Your teaching skill is simply remarkable! Thank you for making every class engaging and enjoyable. I've learned so much under your guidance. Grateful to have you as my instructor Dave, you are so amazing! ✨

Ответить
Cooper Staz
Cooper Staz - 26.07.2023 07:33

Any reason why I get a system error warning in my console? Great video by the way.

Ответить
Mehdi Mansouri
Mehdi Mansouri - 23.07.2023 18:57

you're really a grate teacher
best programming channel

Ответить
abe tomisin
abe tomisin - 22.07.2023 11:14

You need to start issuing certificate for your students Prof

Ответить
Coding for students
Coding for students - 19.07.2023 20:00

I am watching your css tutorial and after that i quickly searched your channel and save your javascript video. Straight to the point content. Want to become a django developer and i request you only to help me in this ❤

Ответить
Александр Семенов
Александр Семенов - 17.07.2023 18:21

Just finished! Thank you for your work, sir!

Ответить
Duy Thái
Duy Thái - 17.07.2023 17:59

I just got here after finished your html,css course. I'm really appreciated for all the passion and hardwork you put into your courses❤

Ответить
Bharathi
Bharathi - 17.07.2023 14:51

Your videos are amazing❤. First I have watched your html tutorial, I have learnt so much from that video. Now I am watching this one, I have watched only 1hr but it's already amazing.

Ответить
Juli Khosla
Juli Khosla - 17.07.2023 11:29

thank you for the tutorials.

Ответить
fastoch
fastoch - 17.07.2023 07:26

Thank you for this amazing content Dave!
You should definitely quit running Windows though.
A developer with your knowledge has to go with free and open-source software.

Ответить
Kms Ganesh
Kms Ganesh - 16.07.2023 06:04

Glued to your way of teaching. Love from India

Ответить
Kabul View
Kabul View - 15.07.2023 06:30

Hi
By finishing this course, do i have enough knowledge for learning React JS?

Ответить
Anirudh katkar
Anirudh katkar - 14.07.2023 22:54

//Rock Paper Scissor game

// 1=rock
// 2=paper
// 3=scissor

let p1 = Math.ceil(Math.random()*3);
if(p1===1)
{
p1 = "rock";
console.log("Player 1 is " +p1);
}
else if(p1===2)
{
p1 = "paper";
console.log("Player 1 is " +p1);
}
else
{
p1 = "scissor";
console.log("Player 1 is " +p1);
}

let p2 = "scissor";
console.log("Player 2 is " +p2);

switch(p1)
{
case p2:
console.log("Tie!");
break;

case "rock":
if(p2 === "paper")
{
console.log("P2 wins");
}
else
{
console.log("P1 wins");
}
break;

case "paper":
if(p2 === "scissor")
{
console.log("P2 wins");
}
else
{
console.log("P1 wins");
}
break;

default:
if(p2 === "rock")
{
console.log("P2 wins");
}
else
{
console.log("P1 wins");
}
}


Thanks Dave atleast i did this😅😂

Ответить
Alexander Alhazov
Alexander Alhazov - 13.07.2023 22:24

Amazing course !! Thank you so much.

Ответить
A I Z E N
A I Z E N - 09.07.2023 13:24

In order to find a course like this, you must pay at least $200, but Dave provides it to us for free. Thank you very much, Professor Dave

Ответить
Kiyatara
Kiyatara - 08.07.2023 14:52

json playholder

Ответить
a1234
a1234 - 07.07.2023 19:32

Done YEY! Thank you <3

Ответить
Sawan Singh Parihar
Sawan Singh Parihar - 06.07.2023 17:59

Why is the audio so low in the tutorial?

Ответить
Aridany de la Fe Sarmiento
Aridany de la Fe Sarmiento - 05.07.2023 20:02

Hi dave and community!. This video is 2 years old, could I use it today to learn javascript? It is outdated? Thank you very much, I love your videos :)

Ответить
Imahara
Imahara - 29.06.2023 10:48

Thank you for making this. I watched the HTML course then CSS and now completing it with JS.

Ответить
Rifat Munna
Rifat Munna - 28.06.2023 12:48

thank you so much . i learn lot of from your js video but i just wanna add one thing here please just explain more with method and how can we do some work with different way.. btw you are a great teacher you explain lot of thing so easily that other can't. i'm keep looking for your new video about frame work of js thank you

Ответить
Hamza Jani
Hamza Jani - 27.06.2023 18:57

Hy bro
First of all
love u your html and css is amazing ❤️❤️
And 2nd is
I learned html and css full from your course and i also done 2 other courses on html and css . It means i am learning web development from 3 channel on is your and 2 are Indian (bcz my English is not good 😁).
But now when i start learning java i faced a problem some teacher are using replete and some vs code what can i use
I am asking u this bcz i know you are a good instructor of web development and i am biginer in cooding.
Now i am confused what can i use vscode or raplete bcs i learned html , css in vs code but my one teacher is using raplet

Ответить
a1234
a1234 - 27.06.2023 13:54

Day two for me and I just did the first coding problem and I actually figured it out on my own and that was freaking rewarding!

Ответить
Hamza Jani
Hamza Jani - 26.06.2023 07:32

Hy bro
First of all
love u your html and css is amazing ❤️❤️
And 2nd is
I learned html and css full from your course and i also done 2 other courses on html and css . It means i am learning web development from 3 channel on is your and 2 are Indian (bcz my English is not good 😁).
But now when i start learning java i faced a problem some teacher are using replete and some vs code what can i use
I am asking u this bcz i know you are a good instructor of web development and i am biginer in cooding.
Now i am confused what can i use vscode or raplete bcs i learned html , css in vs code but my one teacher is using raplet

Ответить
Toji Fushigoro
Toji Fushigoro - 13.06.2023 14:26

you are a blessing for many of us ..i completed html and css tutorial of yours and now ....js is also very fun to watch

Ответить
useless me
useless me - 11.06.2023 17:48

Hello dave, I have completed your html and css tutorials and I am halfway into this js tutorial. Can you please make videos on some basic projects using html,css and js, as I want to learn more about js through projects. love from India!

Ответить