
Create an array with unique items.
Via Addy Osmani

Create an array with unique items.
Via Addy Osmani
is now natively supported on Chrome but Google have provided a polyfill that supports it all the way back to Internet Explorer 9.
Generators are really cool. Mixing then with Promises is awesome but even more so with Observables.
Tom Harding @whoaitstom is blogging again. Currently he’s doing an introduction to lambda calculus.
I’m trying not to have to use TypeScript but it may be inevitable.
The venerable master Qc Na was walking with his student, Anton. Hoping to prompt the master into a discussion, Anton said “Master, I have heard that objects are a very good thing – is this true?” Qc Na looked pityingly at his student and replied, “Foolish pupil – objects are merely a poor man’s closures.”
Chastised, Anton took his leave from his master and returned to his cell, intent on studying closures. He carefully read the entire “Lambda: The Ultimate…” series of papers and its cousins, and implemented a small Scheme interpreter with a closure-based object system. He learned much, and looked forward to informing his master of his progress.
On his next walk with Qc Na, Anton attempted to impress his master by saying “Master, I have diligently studied the matter, and now understand that objects are truly a poor man’s closures.” Qc Na responded by hitting Anton with his stick, saying “When will you learn? Closures are a poor man’s object.”
At that moment, Anton became enlightened.
Originally shared by Jason Mayes
Confused with all the new #ES6 #JS syntax? Check out this really sweet cheat sheet which will answer all your questions if you have been living under a rock the past few years. Worth a read.
https://github.com/mbeaudru/modern-js-cheatsheet
Very neat.
Originally shared by Pieter Lamers
JavaScript’s typeof operator should be ignored. It’s broken.
A more reliable test for data types:
Object.prototype.toString.call(data);
For example:
Object.prototype.toString.call([]); // [object Array]
Object.prototype.toString.call({}); // [object Object]
Object.prototype.toString.call(”); // [object String]
Object.prototype.toString.call(new Date()); // [object Date]
Object.prototype.toString.call(1); // [object Number]
Object.prototype.toString.call(function () {}); // [object Function]
Object.prototype.toString.call(/test/i); // [object RegExp]
Object.prototype.toString.call(true); // [object Boolean]
Object.prototype.toString.call(null); // [object Null]
Object.prototype.toString.call(); // [object Undefined]