JavaScript QuickStart Series
The QuickStart Series gets you up and running with JavaScript - No HTML or CSS required! There are four sets available.
You can start with the JavaScript Quickstart for beginners followed by the series About Objects and Functions. From there, you can jump into either JavaScript Projects or Flow Control Statements.
JavaScript QuickStart
Suitable for absolute beginners in JavaScript programming, these tutorials guide the user through the foundations of JavaScript and how to perform calculations and string manipulation.
About Objects and Functions
This series introduces Objects in JavaScript and explores the various ways we can create functions in JavaScript. It closes with a look at JavaScript modules as a way to organize larger code bases by splitting the code into several files.
Flow Control Statements
JavaScript Projects
A-Z
As a result of following the first three sets of quickstart tutorials, you should have the following set of stand-alone JavaScript files.
DirectoryJS-Quickstart
- app.js Intro to JavaScript
- basic-math.js JavaScript Math
- controlling-text.js Manipulate Strings
- data-types.js Complex Data Types
- exploring-functions.js Functions
- functions-and-objects.js More Objects/Classes
- grok-decisions.js Conditionals
- handling-repetition.js Looping
- indexes-and-arrays.js Arrays
The last set - JavaScript Projects - moves you into the world of Node projects (again, focused on JavaScript apart from HTML/CSS).
DirectoryJust-JavaScript Node Projects
- package.json
- index.js
DirectoryKeeping-Organized JavaScript Modules
- package.json
- index.js
DirectoryLearning-With-Unit-Tests Unit Testing
- package.json
Directorysrc
- index.js
Directorytests/
- …
DirectoryJS-Quickstart Also JavaScript Modules
- modules.mjs
- node-support.mjs
- other-modules.mjs
DirectoryProjects Super-Simple CLI
- package.json
- index.js
DirectoryQueue-CLI Modern CLIs
- package.json
Directorysrc
- index.js
DirectoryRefactoring-Code
- package.json
Directorysrc
- index.js
DirectoryJS-Quickstart
- spread-operators.js
DirectoryTDD
- package.json
Directorysrc
- index.js
Directorytests
- test-first.spec.js
DirectoryUnit-Tests-Done-Right
- package.json
Directorysrc
- index.js
DirectoryVitest
- package.json
Directorysrc
- index.js
DirectoryWeb-Workers
- package.json
Directorysrc
- index.js
DirectoryxPlore-xTra/
- …
DirectoryYour-Future-Career/
- …
DirectoryZ/
- …