Reading Class - meron-401n14/seattle-javascript-401n14 GitHub Wiki
Node.JS . Node.js a program that allows you to apply your JavaScript skills outside of the browser . If Install Node.js , go to https://nodejs.org and follow the installation instructions for your operating system
. When Node.js is installed on a system, it provides a program called node, which is used to run JavaScript files.
. The console.log method in Node does something similar to what it does in the browser. It prints out a piece of text, But in Node, the text will go to the process's standard output stream, rather than to a browser's JavaScript console.
. If you run node without giving it a file, it provides you with a prompt at which you can type JavaScript code and immediately see the result .