JavaScript
Hello Devs, welcome to my tutorial series on JavaScript. This tutorial is designed to help you learn the JavaScript programming language. There are a lot of sample source codes that you can practice with as you follow along. Please do not be in rash whilst going through the tutorials. If you need to spend a day or two in order to understand a JavaScript concept kindly do so. It is the understanding of the syntax that makes you a good developer.
This page will contain all the links to the JavaScript tutorials. With time the resources would be updated as and when the JavaScript Programming language receives new syntax updates.
As the links are listed in the order of the learning tree, do well to follow them chronologically and avoid skipping them as a newbie to this programming language. For folks looking to just have a glance to maintain their JavaScript proficiency, you can skip the concept you are familiar with. Okay, with this being settled let's get started.
PART ONE (link)
JavaScript Introduction
Kindly follow this link to learn the introduction to JavaScript Programming Language.
PART TWO (link)
JavaScript Variables
Kindly follow this link to learn the variables in JavaScript Programming Language.
PART THREE (link)
JavaScript Global and Local Scope
As a Coder, consider that you code in blocks of code and that anytime you create a function or a variable outside a block of code like a function or class, it is called a global scope and when you define and declare variables and functions within a function or a class or any block of code it is called a local scope.
PART FOUR (link)
JavaScript Data types
Data is one of the most powerful resources in the world. So it is important to understand the data types and their creation in computer programming.
PART FIVE (link)
JavaScript Operators
"Operators are the starting point in creating a suitable logic for a situation, make sure to understand them very well." (Mark Anthony Graham)
PART SIX (link)
JavaScript if..else..if..else
PART SEVEN (link)
JavaScript Switch keyword
Comments
Post a Comment