1. Basic Syntax Structure of a JavaScript Program: // Inline comment /* Multi-line comment */ console.log(“Hello, World!”); // Output to console 2. Variables Declaration: var name = “John”; // Global …
JavaScript
-
-
00:00 What is JavaScript 04:41 Setting Up the Development Environment 07:52 JavaScript in Browsers 11:41 Separation of Concerns 13:47 JavaScript in Node 16:11 Variables 21:49 Constants 23:35 Primitive Types 26:47 …
-
/* * ———————– * Ember.js Cheatsheet * ———————– * * Docs: https://guides.emberjs.com/ * Quick start: https://guides.emberjs.com/current/getting-started/quick-start/ * * Table of contents * ——————- * 01 | Installation * 02 | …
-
/* ******************************************************************************************* * SYNOPSIS * http://nodejs.org/api/synopsis.html * ******************************************************************************************* */ var http = require(‘http’); // An example of a web server written with Node which responds with ‘Hello World’. // To …
-
/* ******************************************************************************************* * GLOBAL OBJECTS > OBJECT * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object * ******************************************************************************************* */ // Global object: properties Object.length // length is a property of a function object, and indicates how many …
-
A large collection of Javascript related ebooks and also some frameworks JavaScript Basic JavaScript for the impatient programmer – Dr. Axel Rauschmayer Book of Modern Frontend Tooling Crockford’s JavaScript – Douglas Crockford …