| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
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']
}; 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.
*/| Back | FazBrowse Home | New Git URL |