Deep JavaScript: Theory and techniques
Learn JavaScript in 12 Minutes
Client side scripting
- js sent with HTML, runs on client machine
What this means, however, is that to do JavaScript development “The Modern Way”, while adopting its new features, you simply must use a local transpiler toolchain. The community standard for this at the moment is known as babel, and it’s likely to remain the community standard well into the future.
Node.js: JavaScript on the Server
Google Tech Talk from Ryan Dahl in 2010.
# first arg is the callback
setTimeout(function () {
console.log('world');
}, 2000);
console.log('hello');