2ality.com/2022/10/javascript-decorators.html
Preview meta tags from the 2ality.com website.
Linked Hostnames
12- 18 links togithub.com
- 12 links toexploringjs.com
- 4 links tobabeljs.io
- 3 links to2ality.com
- 2 links todocs.google.com
- 1 link todevblogs.microsoft.com
- 1 link todr-axel.de
- 1 link toecmascript.news
General Meta Tags
6- titleJavaScript metaprogramming with the 2022-03 decorators API
- charsetutf-8
- viewportwidth=device-width
- descriptionJavaScript decorators have finally reached stage 3! Their latest version is already supported by Babel and will soon be supported by TypeScript. This blog post covers the 2022-03 version (stage 3) of the ECMAScript proposal “Decorators” by Daniel Ehrenberg and Chris Garrett. A decorator is a keyword that starts with an @ symbol and can be put in front of classes and class members (such as methods). For example, @trace is a decorator: class C { @trace toString() { return 'C'; } } A decorator changes how the decorated construct works. In this case, every invocation of .toString() will be “traced” (arguments and result will be logged to the console). We’ll see how @trace is implemented later.
- og:titleJavaScript metaprogramming with the 2022-03 decorators API
Twitter Meta Tags
1- twitter:cardsummary
Link Tags
5- alternatehttps://2ality.com/feeds/posts.atom
- apple-touch-icon../../img/favicons/2ality-favicon-180x180.png
- icon../../img/favicons/2ality-favicon-opaque.svg
- mask-icon../../img/favicons/2ality-favicon-transparent.svg
- stylesheet../../assets/main.css
Links
46- https://2ality.com/2016/01/enumify.html
- https://2ality.com/2022/01/pipe-operator.html
- https://2ality.com/index.html
- https://babeljs.io/blog/2015/03/31/5.0.0
- https://babeljs.io/blog/2018/08/27/7.0.0