8 Matching Annotations
- Dec 2020
-
hacks.mozilla.org hacks.mozilla.org
Tags
Annotators
URL
-
-
javascript.info javascript.info
Tags
Annotators
URL
-
- Jul 2018
-
www.educative.io www.educative.io
-
.
That's the key point
-
-
www.hacksparrow.com www.hacksparrow.com
-
-
developer.mozilla.org developer.mozilla.org
-
filter() does not mutate the array on which it is called
Array.filter() is therefore pure.
-
- Jan 2016
-
babeljs.io babeljs.io
-
A detailed overview of ECMAScript 6 features.
React ES5 to ES6
-
- Oct 2015
-
es6-features.org es6-features.org
-
bar (x, y) { … }, *quux (x, y) { … }
So what's the difference between
bar
andquux
?
-
- Aug 2015
-
blog.wolksoftware.com blog.wolksoftware.com
-
In summary:
- Class decorators are functions that wrap a constructor function
- Property decorators are functions that take a prototype and property name as input and can modify the property
- Method decorators are functions that take a prototype, method name and method descriptor as input and return an updated descriptor
-