Tag: javascript les…

  • JavaScript Tutorial For Beginners #25 – Slice and Split Strings

    Yo ninjas, I just want to show you a couple of neat little string methods (functions) in this JavaScript tutorial. The slice method and the split method. The slice method literally ‘slices’ your string into a new segment defined by starting and ending points. The split method, splits a string into multiple ‘pockets’ and puts…

  • JavaScript Tutorial For Beginners #17 – For Loops

    An easier way to iterate through a loop is via the for loop, which we’ll talk about in this JavaScript tutorial. A for loop does exactly the same thing as a while loop, but it has the advantage of organizing it’s components more locally and neater. As always, if you have any questions, fire ahead…

  • JavaScript Tutorial For Beginners #44 – VERY Simple Form Validation

    Hey guys, so in this tutorial I want to show you what we can do with another form method – the onsubmit method. The onsubmit method in JavaScript lets us interrupt the process of the form being sent to the server, so that we can perform some client side validation first and save time. If…

  • JavaScript Tutorial For Beginners #5 – Google Chrome Developer Tools

    Yo everyone. So in this JavaScript tutorial I want to show you the basics of the Google Chrome developer tools that ship freely with Google Chrome. The developer tools are a wicked tool for debugging not only JavaScript, but also HTML & CSS as well as running other site diagnostics such as site speed &…

  • JavaScript Tutorial For Beginners #38 – Removing Elements from the DOM

    Hey guys, in the last JS tutorial I showed you how to insert new HTML elements into the DOM. In this lesson, I’ll show you how to remove elements from the DOM! We can remove elements from the DOM in JavaScript via the removeChild() method. If you have any questions, fire away 🙂 SUBSCRIBE TO…

  • JavaScript Tutorial For Beginners #42 – JavaScript Timers

    Yo ninjas, in this tutorial I want to teach to you the amazingness of JavaScript timers :). Timers are used all over the show in JavaScript, in anything from popup forms to image sliders. They are a cool feature of JavaScript and well worth mastering if you want to create slightly more advanced interactivity! The…

  • JavaScript Tutorial For Beginners #41 – Window onLoad Event

    So in this JavaScript tutorial for beginners, I want to show you another kind of JavaScript event – the Window.onload event! The Window object in JavaScript represents the browser window of your web page, and the onload event is the completion of your web page loading. Many times it’s useful to only start our JavaScript…

  • JavaScript Tutorial For Beginners #36 – Changing CSS Styles

    Hey ninjas, in this JavaScript tutorial, we’ll be looking again at the setAttribute method to control in-line styling of our HTML elements, as well as utilizing the ‘style’ property that all DOM objects have access to. If you have any questions at all, fire away :). SUBSCRIBE TO CHANNEL – https://www.youtube.com/channel/UCW5YeuERMmlnqo4oq8vwUpg?sub_confirmation=1 ========== JavaScript for Beginners…

  • JavaScript Tutorial For Beginners #45 – JavaScript Libraries

    Yo ninjas, in this JavaScript tutorial, I just want to give you a brief introduction to the fantastic world of JavaScript libraries. A JavaScript library is essentially a chunk of code that someone else has written (normally for a specific purpose, but there are general purpose libraries too), that can greatly reduce your work load.…

  • JavaScript Tutorial For Beginners – NaN (Not a Number)

    Hey all, I thought it about time I introduced you all to NaN ;). So in this JavaScript tutorial for beginners I’ll be showing you what NaN is (Not a Number) and how we can use it to check whether certain variables are indeed a number or not. As usual, ask away with any questions…