Category: Javascript

  • JavaScript for Web Designers

    In this course you’re going to learn the basics of JavaScript from a web designer’s perspective. We’ll begin by going over the basics, such as JavaScript variables, data types, and loops, before working toward more complex notions such as functions, selectors, and events. Along the way, we’ll build some examples that are geared towards what…

  • JavaScript Tutorial Part 1 – Lexical Environment

    JavaScript Tutorial For Beginners Learning Curve Books: http://www.learningcurvebook.net Follow me on Twitter: https://twitter.com/js_tut Follow on Instagram: https://www.instagram.com/javascriptteacher/ Follow on Facebook: https://www.facebook.com/javascriptteacher Learn about Lexical Environment in this JavaScript tutorial. A pretty good starting point into the language. JavaScript lexical scope, JavaScript lexical scope example, JavaScript lexical scope definition. Other potentially relevant keywords: let, var, scope,…

  • Clean Code – JavaScript

    This video delves into the subjective idea of writing clean code. From experiencing similar problems in my own career, it’s good to shed a light on some things that could potentially help your own team so that the code you work with is consistent and easily interpreted going forward. Writing clean code is a benefit…

  • Javascript Tutorial | Code Editors & Debugging | Ep10

    Code editors facilitate us when we want to write Javascript code. As of this JS tutorial we have only been writing our code in the console window. Now we need to write more advanced scripts the console interface is too simple. Also when refreshing the page all our instructions are lost, whereas if we save…

  • JavaScript in 7 minutes | Create Interactive Websites | Code in 5

    Learn how to make your websites interactive with the JavaScript in 7 minutes! We’ll review some basic HTML/CSS concepts as well. Need some new tech gadgets or a new charger? Buy from my Amazon Storefront https://www.amazon.com/shop/blondiebytes Code from Last Time | https://github.com/blondiebits/code-in-5/tree/master/DevTools%20in%205 Download Sublime | http://www.sublimetext.com/2 Blog Post | http://blondiebits.herokuapp.com/#/4 Check out my Java and…

  • JavaScript Tutorial: Run JavaScript in Sublime Text with a NodeJS Build System

    In this JavaScript Tutorial, we will be learning how to create a JavaScript build system within Sublime Text. This will allow us to run JavaScript code outside of a browser environment and write messages to the Sublime Text console. Let’s get started. ✅ Support My Channel Through Patreon: https://www.patreon.com/coreyms ✅ Become a Channel Member: https://www.youtube.com/channel/UCCezIgC97PvUuR4_gbFUs5g/join…

  • Mastering JavaScript Callbacks

    Learn how to manage asynchronous callbacks and avoid callback hell. Getting started with Node.js / io.js: https://www.youtube.com/watch?v=Ads1A7pn2LI Code examples used in this video: https://github.com/shama/letswritecode/tree/master/mastering-callbacks Original source

  • JavaScript tutorial 72 – Print patterns of numbers and stars

    Print patterns of numbers and stars: Displaying stars in rows and columns using Javascript loops: var rows=5; var cols=5; for(var i=1;i<=rows;i++) { for(var j=1;j<=cols;j++) { document.write(” * “); } document.write(“<br/>”); } Output: * * * * * * * * * * * * * * * * * * * * * * *…

  • Using regular expressions in JavaScript

    Link for all dot net and sql server video tutorial playlists http://www.youtube.com/user/kudvenkat/playlists Link for slides, code samples and text version of the video http://csharp-video-tutorials.blogspot.com/2015/01/using-regular-expressions-in-javascript.html What is a Regular Expression A regular expression is a sequence of characters that forms a search pattern. Let us understand the use of regular expressions with an example. The following…

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