Hacker News
- ES6 In Depth: Classes https://hacks.mozilla.org/2015/07/es6-in-depth-classes/ 23 comments javascript
Linking pages
- The Power of Web Components - Mozilla Hacks - the Web developer blog https://hacks.mozilla.org/2018/11/the-power-of-web-components/ 95 comments
- Classes - JavaScript | MDN https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes#hoisting 16 comments
- Classes - JavaScript | MDN https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes 16 comments
- ES6 In Depth: Subclassing - Mozilla Hacks - the Web developer blog https://hacks.mozilla.org/2015/08/es6-in-depth-subclassing/ 10 comments
- ECMAScript 6 in WebKit | WebKit https://www.webkit.org/blog/4054/es6-in-webkit/ 0 comments
Linked pages
- The Two Pillars of JavaScript. Part 1: How to Escape the 7th Circle of… | by Eric Elliott | JavaScript Scene | Medium https://medium.com/javascript-scene/the-two-pillars-of-javascript-ee6f3281e7f3 140 comments
- Download and test future releases of Firefox for desktop, Android and iOS. http://nightly.mozilla.org/ 94 comments
- Babel · The compiler for next generation JavaScript http://babeljs.io/repl/#?experimental=true&evaluate=true&loose=false&spec=false&code=function%20example()%7B%0A%20%20%0A%20%20%20%20class%20Actions%20%7B%0A%20%20%20%20%20%20%40Observable%0A%20%20%20%20%20%20static%20processSomething%0A%20%20%20%20%7D%0A%20%20%20%20%0A%20%20%20%20class%20Store%20%7B%0A%20%20%20%20%20%20constructor(name)%7B%0A%20%20%20%20%20%20%20%20this.name%20%3D%20name%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%0A%20%20%20%20%20%20%40Observable%0A%20%20%20%20%20%20updater%0A%20%20%20%20%20%0A%20%20%20%20%20%20%40Observe(Actions.processSomething)%0A%20%20%20%20%20%20processHandler%20%3D%20function(data)%20%7B%20%0A%20%20%20%20%20%20%20%20this.updater.notify(this.name%20%2B%20%22%20processed%20%22%20%2B%20data)%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%20%20%0A%20%20%20%20var%20myStoreA%20%3D%20new%20Store(%22Store%20A%22)%3B%0A%20%20%20%20var%20myStoreB%20%3D%20new%20Store(%22Store%20B%22)%3B%0A%20%20%20%20%0A%20%20%20%20var%20print%20%3D%20function(result)%7B%0A%20%20%20%20%20%20console.log(result)%3B%0A%20%20%20%20%7D%0A%20%20%20%20myStoreA.updater.on(print)%0A%20%20%20%20myStoreB.updater.on(print)%0A%20%20%20%20Actions.processSomething.notify(%221010110%22)%0A%7D%0A%0A%0A%0A%0A%0A%0A%2F%2F%2FAll%20the%20magic%20happens%20down%20here%0Aclass%20ObservableClass%20%7B%0A%20%20subscriptions%20%3D%20%5B%5D%3B%0A%20%20%0A%20%20on%20%3D%20function(handler)%7B%0A%20%20%20%20this.subscriptions.push(handler)%0A%20%20%7D%0A%0A%20%20notify%20%3D%20function()%7B%0A%20%20%20%20var%20args%20%3D%20arguments%3B%0A%20%20%20%20for(var%20i%20%3D%200%20%3B%20i%20%3C%20this.subscriptions.length%3B%20i%2B%2B)%7B%0A%20%20%20%20%20%20this.subscriptions%5Bi%5D.apply(null%2Cargs)%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%0A%0Afunction%20Observable(target%2Ckey%2Ce)%20%7B%0A%20%20%20%20e.initializer%20%3D%20function()%7B%20return%20new%20ObservableClass()%3B%20%7D%0A%7D%0A%0Afunction%20Singleton(target%2Ckey%2Ce)%20%7B%0A%20%20%20%20e.initializer%20%3D%20function()%7B%20return%20new%20target()%3B%20%7D%0A%7D%0A%0Afunction%20Observe(observable)%20%7B%0A%20%20%20%20return%20function(classType%2Ckey%2Cd)%20%7B%0A%20%20%20%20%20%20var%20tempInitializer%20%3D%20d.initializer%3B%0A%20%20%20%20%20%20var%20blah%20%3D%20%20function()%20%7B%7D%3B%0A%20%20%20%20%20%20%0A%20%20%20%20%20%20blah.initializer%20%3D%20function()%7B%0A%20%20%20%20%20%20%20%20%20%20var%20val%20%3D%20tempInitializer.apply(arguments)%3B%0A%20%20%20%20%20%20%20%20%20%20observable.on(val.bind(this))%0A%20%20%20%20%20%20%20%20%20%20return%20val%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20return%20blah%3B%0A%20%20%7D%0A%7D%0A%0Aexample()%3B 51 comments
- Babel · Babel https://babeljs.io/ 31 comments
- ECMAScript 2015 Language Specification – ECMA-262 6th Edition http://www.ecma-international.org/ecma-262/6.0/ 28 comments
- Common Misconceptions About Inheritance in JavaScript | by Eric Elliott | JavaScript Scene | Medium https://medium.com/javascript-scene/common-misconceptions-about-inheritance-in-javascript-d5d9bab29b0a 21 comments
- CC BY-SA 3.0 Deed | Attribution-ShareAlike 3.0 Unported | Creative Commons https://creativecommons.org/licenses/by-sa/3.0/ 18 comments
- GitHub - wycats/javascript-decorators https://github.com/wycats/javascript-decorators 15 comments
- ES6 In Depth: Proxies - Mozilla Hacks - the Web developer blog https://hacks.mozilla.org/2015/07/es6-in-depth-proxies-and-reflect/ 3 comments
- GitHub - stampit-org/stampit: OOP is better with stamps: Composable object factories. https://github.com/stampit-org/stampit/ 1 comment
- How to Fix the ES6 `class` keyword | by Eric Elliott | JavaScript Scene | Medium https://medium.com/javascript-scene/how-to-fix-the-es6-class-keyword-2d42bb3f4caf 0 comments
- christianalfoni WebApp Enthusiast http://christianalfoni.github.io/javascript/2015/01/01/think-twice-about-classes.html 0 comments
- Refactoring http://refactoring.com/ 0 comments
- ES6 In Depth Archives - Mozilla Hacks - the Web developer blog https://hacks.mozilla.org/category/es6-in-depth/ 0 comments
- ES6 In Depth: Generators, continued - Mozilla Hacks - the Web developer blog https://hacks.mozilla.org/2015/07/es6-in-depth-generators-continued/ 0 comments
Would you like to stay up to date with Web Development? Checkout Web Development
Weekly.
Related searches:
Search whole site: site:hacks.mozilla.org
Search title: ES6 In Depth: Classes - Mozilla Hacks - the Web developer blog
See how to search.