Beginning JavaSwift.
MDN: JavaScript (JS) is a lightweight, interpreted, or just-in-time compiled programming language with first-class functions. While it is most well-known as the scripting language for Web pages, many non-browser environments also use it, such as Node.js, Apache CouchDB and Adobe Acrobat. JavaScript is a prototype-based, multi-paradigm, single-threaded, dynamic language, supporting object-oriented, imperative, and declarative (e.g. functional programming) styles. Read more about JavaScript.
Hello developer,
For the majority of the examples here you can use repl.it to execute the JavaScript statements. Approach learning the content chronologically base on the
Table of Contents
and complete the given exercises at the bottom of the modules for practice.
JavaScript allows developers to write client-side (web user interfaces) and server-side (web APIs) applications.
Some technologies of a full-stack developer:
const fullStackDeveloper = {
languages: ['javascript', 'typescript', 'python', 'php'],
userInterfaces: ['html', 'css'],
backend: ['node', 'express'],
cloud: ['aws', 'azure', 'google'],
databases: ['mongodb', 'mysql', 'posgreSQL'],
frontEndFrameworks: ['react', 'redux', 'ember', 'angular', 'vue.js']
};
- Logging
- Data Types
- Variables
- Control Flow
- String
- Array
- Loops
- Functions
- Higher-order functions
- Objects
- Node and Packages
- JSON
- Promises
- Error Handling
- Math
- Date
- Data Structures
- Algorithms
- Tools
- DOM
- ES6
- Node
- npm
- nvm
- JIT
- VS Code Extensions
To evaluate your JavaScript fundamentals work on any of the following projects as a command line application. To take in user input use the prompt()
method.
const userInput = prompt('Please enter your name?');
console.log(`Hi, ${userInput} get ready for an adventure.`);
/*
$ Please enter your name?> Alex
Hi, Alex get ready for an adventure.
*/
- Mad Libs Generator
- Rock, Paper, Scissors
- Tic Tac Toe
- Hangman
- Black Jack
- Calculator
- Trivia Game
- Text-Based Adventure Game
- MDN - JavaScript
- MDN - JavaScript Guide - For folks with Programming Backgrounds
- MDN - JavaScript's standard, built-in objects
- Wikipedia- Strong vs Weak typed languages
- repl.it - online IDE
- Microsoft - Beginning Series to JavaScript
- Intro to JavaScript: Arrays, Objects, Functions
- AirBnb JavaScript Style Guide
- 50 Popular Node Packages