JavaScript Tutorial for Beginners | Learn JavaScript From Scratch




JavaScript Tutorial for Beginners | Learn JavaScript From Scratch

Learn More about JavaScript @ https://goo.gl/Txghmq

What is JavaScript ??
JavaScript is a client-side scripting language.JavaScript is an object-oriented computer programming language commonly used to create interactive effects within web browsers.

0:03 – Introduction to JavaScript
6:44 – Comments and Statements
11:51 – Variables
18:34 – Different Types of Variables
25:00 – Using Variables with Strings
29:29 – Functions
35:57 – Using Parameters with Functions
40:35 – Functions with Multiple Parameters
45:25 – The Return Statement
50:57 – Calling a Function from Another Function
57:04- Global & Local Variables
1:01:46 – Math Operators
1:07:37 – Assignment Operators
1:11:34 – if Statement
1:18:57 – if/else Statement
1:25:12- Nesting and Fridays!
1:30:45 – Complex Conditions
1:38:02 – switch
1:46:04 – for Loop
1:51:40 – while Loop
1:57:15 – do while
2:02:36 – Event Handlers
2:10:10 – onMouseOver & onLoad
2:18:07 – Objects
2:26:45 – Creating Our Own Objects
2:36:07 – Object Initializers
2:41:34 – Adding Methods to Our Objects
2:50:27 – Arrays
2:56:39- Other Ways to Create Arrays
3:03:22 – Array Properties and Methods
3:08:43 – join and pop
3:14:40 – reverse, push, sort
3:19:26 – Add Array Elements Using a Loop
3:27:14 – Cool Technique to Print Array Elements
3:32:13 – Associative Arrays
3:36:13 – Math Objects
3:42:34 – Date Objects
3:51:18 – Accessing Forms
3:59:00 – Accessing Form Elements
4:06:13 – Simple Form Validation

Javascript is a dynamic computer programming language. It is lightweight and most commonly used as a part of web pages, whose implementations allow a client-side script to interact with the user and make dynamic pages. It is an interpreted programming language with object-oriented capabilities.

This JavaScript tutorial is easy to learn. This tutorial will teach you JavaScript from basic to advanced.This tutorial will teach you basic to advanced javascript.

#Javascript #JavascriptTutorial

Original source


22 responses to “JavaScript Tutorial for Beginners | Learn JavaScript From Scratch”

  1. I think if you index your video by topic for easy searching, you'll get a lot more views. This is an extremely long video, almost impossible to keep track (replay, forward etc) of the topics/subjects without an index. Thanks for the effort.

  2. I wonder how is it that you dont have more views. I just finished watching your html and css tutorials and it taught me so much. English isnt even my first language and i dont know why but you have sush a way to simplify and explain those things. You should be a teacher really. Thank you very much for your videos!

  3. onunload not working in firefox. My code:
    <!DOCTYPE html>
    <html>
    <head>
    <link rel="stylesheet" type="text/css" href="style.css">
    <title>Samarth</title>
    </head>
    <body onLoad="alert('Website is loaded');" onUnload="alert('Thankyou for viewing the website. Come back soon');">

    <form name="f1">

    Name:<input type="text" name="n" placeholder="Type your name">
    <!– When button will be clicked, an alert will pop-up saying Login successful!!! will appear. –>
    <button onClick="sam()">Press!!!</button>

    </form>
    <a href="http://google.co.in" onMouseOver="alert('Click to go to http://www.google.com&#39;);" onMouseOut="alert('Dont want to go to google? Come back!!!');">Google </a>

    <script type="text/javascript" src="script.js"></script>

    </body>
    </html>

Leave a Reply