This is CS50W, CS50’s Web Programming with Python and JavaScript. Register for free at https://cs50.edx.org/web. Slides and …
39 Comments
Leave a Reply
You must be logged in to post a comment.
This is CS50W, CS50’s Web Programming with Python and JavaScript. Register for free at https://cs50.edx.org/web. Slides and …
You must be logged in to post a comment.
lmao everytime you do something and in my head im like "but what about? …." you immediately answer my question. u read my mind
What a amazing lecture! So captivating, it really gets me super excited to learn more about the language.
Great stuff! Just wondering why CS50W teaches Django instead of Node since it teaches JavaScript anyway and Node seems more widely used than Django to me?
Absolutely Amaaazing !
This is a example how every teacher do a explanation to a class. Many thanks Brian.
47:25 second session
Anyone else getting a JSON error when trying to connect to the currency exchange API? I think it's asking for an access key and Brian hasn't talked about it.
I wanna code a bottle of water for this guy
Wowwww! I am so glad to have come across your channel. I really enjoy your tutorials. It's incredibly informative, unique and easy to understand. You have such an interesting style of teaching that really works with me. I appreciate the way you go through all the different ideas more closely to make sure we got them. I am confident that whoever (luckily) stumbles upon your tutorial video will learn a lot. I can't thank you enough. Merci Monsieur, vous êtes l'un des meilleurs tuteurs que j'ai jamais rencontré !
INR fall a lot in 1y
10:58 I actually tried here method using Counter + 1; but didn't got output like that used for Counter++. Can anyone explain me why this happened?
bryan is the best
I love programming. Imagine being able to see and understand what happens behind the scenes of a web page.
Amazing logical lectures and understandable samples. Many thanks.
for those who want to add variables more easily to a print or alert statement in javascript or python, you can use the concatenator like so instead of string formatting which i find really confusing in comparison:
26:05 alert('Count is now at ' + counter)
for python: print("This is how it works", variable, "yes it really does work")
note: i knew this from java and i just tried it out in python and javascript and it works perfectly fine although it's a bit different in python 🙂
I am completely speechless, the way Brian is teaching. I believe he is an awesome teacher, presenter, and what not. Thank you so much Brian for all this content. I know thank you is not an enough to express my feelings 😊😊 Awesome..Awesome..Awesome..
how does changing value of variable changes value of original h1 element at 21:20 timestamp?
I love this lecture, and I am a Javascript beginner too. However, I think that is not a good habit to call the opetator "=" as "equal" when you declare a new variable because this way of thinking will cause you so much trouble once digging deeper into Javascript.
Glad to see such excitement and dedication towards teaching. Thats why institutions like Harvard Has given biggest tech Giants in the world😇
1:34:36, In 2022 It's not working . It wants API Access key , need help guys
1:06:52
1:22:00
<button onclick="count()">Count</button> doesn't respond when i click the button any help?
This is lectures 5, is 6,7,and 8 still all part of Javascript too?
47:08
1:18:17
This guy is from planet Mercury 😀
Fun fact, he is 55. That's why his presentation is so refined. 😂
THANK YOU, Brian Yu. You've been a great help to me.
01:21:27
Gosh I be kicking myself had I bought into a coding camp. Finding Brian's lecture while searching on google for the answer to how to JavaScript! Harvard EDX free classes are the best!
Thank you for all the work that you made and thank you for sharing this masterpiece to us.
This guy needs to create a YouTube channel
Why I get undefinied my li on ul after user click on submit? this is my line
<!DOCTYPE html>
<html lang="es">
<head>
<title>Tareas</title>
<script>
document.addEventListener('DOMContentLoaded', function() {
document.querySelector('form').onsubmit = () => {
const task = document.querySelector('#tasks').value;
const li = document.createElement('li');
li.innerHTML = task;
document.querySelector('#tasks').append(li);
// Stop form from submitting
return false;
}
});
</script>
</head>
<body>
<h1>Tarea</h1>
<ul id="tasks">
</ul>
<form>
<input id="task" placeholder="Nueva Tarea" type="text">
<input type="submit">
</form>
</body>
</html>
46:44
38:23
22:54
The package is clear and contain allot of information, Thanks.