Tag: js tutorials

  • JavaScript Tutorial For Beginners #14 – Comparison Operators

    Hey all. So in this JavaScript tutorial I wanted to introduce the comparison operators – well, you’ve already seen 1, the less than sign . We’ll be using these in up and coming video’s to make more complex logical flow statements. As usual, any questions just fire away :). SUBSCRIBE TO CHANNEL – https://www.youtube.com/channel/UCW5YeuERMmlnqo4oq8vwUpg?sub_confirmation=1 ==========…

  • JavaScript Tutorial For Beginners 01 – Introduction

    Hey ninja’s, glad you decided to take the JavaScript train and join me on this epic journey of JavaScript tutorials for beginners. We’ll be covering all the basics, and certainly enough to get you up and running making your own JavaScript programs for your websites. If you need to cacth up on HTML or CSS…

  • Digital Clock in JS | JavaScript Tutorials | Web Development Tutorials

    Digital Clock using HTML, CSS & JS (Video Tutorial). Learn some JS fundamentals by working with its functions, variable, Date object, timer & accessing the page element. Website: http://samsolomonprabu.com/ Source File: https://drive.google.com/file/d/0B6RD52SkI2-cTHdoR2RLbkc0Q0E/view?usp=sharing Original source

  • JavaScript Tutorial For Beginners #32 – What is the DOM in JavaScript?

    Yo Ninjas, in this JavaScript tutorial for beginners, I’ll be walking you through what the DOM is and how we use it to interact with our web pages. The DOM stands for Document Object Model and in technical terms, is an application programming interface. But what that really means is that we can use the…

  • JavaScript Tutorial For Beginners #37 – Adding Elements to the DOM

    Hey all! So for I’ve taught you how to change existing content in the DOM, but in this JavaScript tutorial I want to show you how to add new elements too! To do this we use the createElement method, and then insert the new element into the DOM by using either one of the following…

  • JavaScript Tutorial For Beginners #8 – Basic Mathematical Operators

    Basic mathematical operators in JavaScript are: – Plus, minus, multiply & divide SUBSCRIBE TO CHANNEL – https://www.youtube.com/channel/UCW5YeuERMmlnqo4oq8vwUpg?sub_confirmation=1 ========== JavaScript for Beginners Playlist ========== ========== CSS for Beginners Playlist ========== ========== HTML for Beginners Playlist ========== ========== The Net Ninja ============ For more front-end development tutorials & to black-belt your coding skills, head over to –…

  • JavaScript Tutorial For Beginners #6 – Basic JavaScript Syntax & Rules

    Hey guys, today’s awesome JavaScript lesson is gonna be all about the basics of JavaScript syntax and a few core rules. We’ll look at case sensitivity, what statements are, whitespace & layout, as well as comments and how the order of your code matters. As usual, comment below with any questions and I’ll do my…

  • JavaScript Tutorial For Beginners #34 – Changing Page Content

    Yo ninjas! In this JavaScript tutorial, I’ll be showing you how to change your web page content on the fly via the DOM. To do this, we must follow two steps: 1. Reach into the page and grab a node / element 2. Change the property of that note (either innerHTML or textContent). In this…

  • JavaScript Tutorial For Beginners #4 – Where to put your JS

    Hey all. In this JavaScript lesson I’ll show you exactly where to put your JavaScript code. The code can essentially be placed anywhere on your HTML document, but good practise dictates that you place it near the bottom of your code, and in an external file if it’s global or large. SUBSCRIBE TO CHANNEL –…

  • JavaScript Tutorial For Beginners #7 – JavaScript Variables

    Hey ninjas. In today’s JavaScript tutorial, we’ll be taking a look at what variables are from a birds eye view. Variables are at the heart of most programming languages, and JavaScript is no different in that respect. Variables area a way of storing information (such as the pixel position of an element on a page,…