Javascript Tutorial For Beginners – Free JS Course – Web Development Tutorial




This Javascript Tutorial is a Free Javascript Web Development Course designed for beginners. If you’re wanting to know how to Javascript, in this course, you’ll get JS tutorials that cover the basics and programming basics from the very beginning.

We’ll cover Javascript variables, if else statements, functions, arrays, event bindings, and more. If you’re learning web development and are ready to learn Javascript for beginners, this is the free tutorial for you.

Original source


42 responses to “Javascript Tutorial For Beginners – Free JS Course – Web Development Tutorial”

  1. var name = prompt("What is your first name?"); var lastName = prompt("What is your last name?"); var age = prompt("How old are you?"); alert("Hello, "+name+" "+lastName+"!" + " You are " +age+ " years old!")

    I did some homework! 😀 It tells you your first name, last name and your age. (Of course you could say your name is Nigger Faggot and say you're 420 years old :D)

  2. Nice Tutorial. Crisp and to the point. Thank you.
    I tried to program your assignment of getting 2 numbers using prompt. The prompt returns Numbers as Strings . So when I add them, it will not give sum, but concatenated output. I googled and found out that We have to Parse the Strings into numbers using the parseInt() or parseFloat() , store them back into number variables, add them inside the alert . I learnt new things .

  3. Windows user used to Firefox. Uses Chrome for the first time…..select view…..eh whut….nope not there. Ok then, activate menu somehow to see "view", right click? Nope, doesn't do it….and off we go in searching something that should be pretty freakin obvious. Marvelous beginning. Ok, look for a guide, guide tells me to look for a wrench symbol, great it's not there either, this is starting to become silly.

  4. var name = prompt('what is ur name');var firstnumber =+prompt('pls select ur first number for this game');var secondnumber =+prompt('pls choose ur second number now');var magic =firstnumber+secondnumber; alert(name+' '+'the sum of ur numbers are'+' '+magic) finally with the help of the comments and trying like 15-20 times

  5. Hi there, im entering 2 numbers by prompt() and then with alert() it's showing me the result as a string and not the sum of the numbers, this is my code: var x= prompt('give me a number'); var y = prompt('give me another number'); var z = alert ('the sum of your numbers is: '+ x+y);
    so where's my fault?

  6. I Love All The Series On This Channel

    Heres My First Javascript Program:

    var name = prompt("What Is Your Name?")
    var lastname = prompt("What Is Your Last Name?")
    var age = prompt("How Old Are You?")
    alert("Hello " + name + lastname + "! You Are " + age + "Years Old!" )

  7. Trying to convert from java to Javascript was a bit of a challenge, at least trying to get used to the different syntax (I hate punctuation now). This series has definitely helped a ton and I'd recommend anyone who is watching to follow the entire series

  8. I appreciate your effort for this tutorial, but you didn't mention how to use it with HTML/CSS pages …. how to put the JaveScript code into the pages . you dived quickly into the code rules .

Leave a Reply