Skip to content

Latest commit

 

History

History
30 lines (18 loc) · 1.06 KB

File metadata and controls

30 lines (18 loc) · 1.06 KB

Deep JavaScript: Theory and techniques

Learn JavaScript in 12 Minutes

Client side scripting

  • js sent with HTML, runs on client machine

Eloquent JavaScript

JavaScript: The Modern Parts

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');

Introduction to JavaScript and Browser DOM

Node.JS: The Good Parts? A Skeptic's View