Tag: javascript les…

  • JavaScript Tutorial For Beginners 03 – Hello World! in JavaScript

    Hey ninjas, welcome to your 3rd JavaScript for beginners tutorial! It’s customary that when you learn a new programming language, that the first program you write in that language is the timeless ‘Hello, World!’ classic! So that’s exactly what we’ll be doing in this lesson. No need to pay attention to the details here, I…

  • JavaScript Tutorial For Beginners #11 – Booleans in JavaScript

    Yo guys, today we’re gonna look at boolean values (true and false values) and the different values that are seen as “truthy” or “falsey” by JavaScript. To determine whether a value is truthy or falsey, we can use the built in JavaScript Boolean() function. Other expressions can also be evaluated as true or false, for…

  • JavaScript Tutorial For Beginners #15 – Logical Operators

    In this JavaScript tutorial for beginners, I’ll show you the two logical operators we can use with our control flow statements (such as if statements and loops). The two operators are the AND operator ( && ) and the OR operator ( || ) . The AND logical operator can be used when you need…

  • JavaScript Tutorial For Beginners #16 – While Loops

    Yo Ninjas, in this JavaScript tutorial I’ll be introducing the concept of looping in JS. More specifically, we’ll be taking a look at the while loop – the most basic form of loops. JavaScript loops are a way of repeating sections of code over and over, so that you’re not having to re-write code again…

  • JavaScript Tutorial For Beginners #31 – The Date Object

    Hey guys, in this javascript tutorial we’ll take a look at the Date object and what we can do with it! The date object in javascript returns back the current date by default, but parameters can be passed into the object to store either future or past dates in a variable. Any questions, just ask…

  • 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 #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…