#exploringes6 search results
Explanation of the difference between programming and metaprogramming. #ES2015 #JavaScript #ExploringES6
Proxies can be used as prototypes in #JavaScript. You can redefine default behavior for getting non-existent values. Do not know if this is a good practice🤔 #ES2015 #ExploringES6
Using Array.prototype.indexOf() you can't find NaN inside array because search utilizes ===, and (NaN === NaN) → false. #JavaScript #ExploringES6
Finished reading of #exploringes6 The first step of 2019 ✔️ Really good book, advanced and explains a lot what happens under the hood as examples of use cases. #javascript.
#DrivingTechnicalChange #ExploringES2016AndES2017 #ExploringES6 #ExtremeProgramming #FullstackReact #MasteringBash #MurachsHTML5AndCSS3 #Peopleware #PragmaticThinkingAndLearning
This one is interesting, and I've already mentioned it in the context of the #ExploringES6 book. New #JavaScript modules support cyclical dependencies and thus allow violating this principle. This example is a good illustration of the uncertainty of programming knowledge.
After a long vacation its time to get back to reading!☺️🎉 I've finished #ExploringES6 now its time to change my pinned tweet to a new one.
Reading section "28.5.4.3.1 Use cases for invoke" in #ExploringES6 indeed makes me think that things are covered deeply in this book.😆 #ES2015
This book is an excellent addition to #ExploringES6 and looks like several additional chapters to it. Also, I've got a feeling that I've seen some improvements in the book format, but I don't remember them.😊
After all chapters of #ExploringES6, there is an overview of the discussed themes. I find it useful because of already forgetting some parts.😊
Have you ever used the defineProperty method in #JavaScript? It allows configuring a property. I can't imagine a lot of use cases for it except forcing a particular way of programming. But when you have to force it programmatically haven't the things gone wrong?🤔 #ExploringES6
Due to the way floating numbers are represented in a computer, you should not compare them using equality check in #JavaScript. For these purposes use Number.EPSILON from #ES2015: 0.3 - (0.1 + 0.2) < Number.EPSILON. #ExploringES6 #ES6
It looks like #ExploringES2016AndES2017 is much shorter than #ExploringES6.🤔 I'm relatively new on Earth and still need to learn to compare. #ES2017
Reading about combination of property descriptors and proxies in #JavaScript is 🧐🤔🤔🧐🤔🧐🤔🧐🙈🧐🧐🧐 #ExploringES6 #ES2015 #ES6
Even more, revocable proxies exist in #JavaScript. That means that you want to cancel any further interception. const {proxy, revoke} = Proxy.revocable(target, handler); #ES2015 #ExploringES6
On Monday #ExploringES6 touched upon the subject of metaprogramming and today #DesignIt introduces metamodeling. Metamodel defines the concepts used in a model and the rules for how those concepts are applied. #SoftwareArchitecture #DesignThinking
I begin reading the chapter about proxies in the #ExploringES6 book. I gained some experience with them debugging some of the most neglected cases of code complexity I had to work with. Going to find out if they can be used somewhere except those cases. #ES2015 #JavaScript
Guess I've forgotten to describe what proxies in #JavaScript are. They are objects that let you intercept and customize operations on other objects. E.g., getting and setting value, checking the inclusion of a property by an object. #ES2015 #ExploringES6
If you ever wondered which use cases do proxies in #JavaScript have, here is a good example: Proxies are ideally suited for implementing revocable references because they can intercept and forward operations. #ES2015 #ExploringES6
#DrivingTechnicalChange #ExploringES2016AndES2017 #ExploringES6 #ExtremeProgramming #FullstackReact #MasteringBash #MurachsHTML5AndCSS3 #Peopleware #PragmaticThinkingAndLearning
Finished reading of #exploringes6 The first step of 2019 ✔️ Really good book, advanced and explains a lot what happens under the hood as examples of use cases. #javascript.
This book is an excellent addition to #ExploringES6 and looks like several additional chapters to it. Also, I've got a feeling that I've seen some improvements in the book format, but I don't remember them.😊
It looks like #ExploringES2016AndES2017 is much shorter than #ExploringES6.🤔 I'm relatively new on Earth and still need to learn to compare. #ES2017
This one is interesting, and I've already mentioned it in the context of the #ExploringES6 book. New #JavaScript modules support cyclical dependencies and thus allow violating this principle. This example is a good illustration of the uncertainty of programming knowledge.
After a long vacation its time to get back to reading!☺️🎉 I've finished #ExploringES6 now its time to change my pinned tweet to a new one.
Yesterday I finished #ExploringES6. That was a long journey, I've started a book in April. The book explores #JavaScript deeply, describes a lot of inevident nuances. Guess, @rauschma started writing it in the 1870s, the result is tremendous. #ES6
After all chapters of #ExploringES6, there is an overview of the discussed themes. I find it useful because of already forgetting some parts.😊
Due to the way floating numbers are represented in a computer, you should not compare them using equality check in #JavaScript. For these purposes use Number.EPSILON from #ES2015: 0.3 - (0.1 + 0.2) < Number.EPSILON. #ExploringES6 #ES6
Reading about combination of property descriptors and proxies in #JavaScript is 🧐🤔🤔🧐🤔🧐🤔🧐🙈🧐🧐🧐 #ExploringES6 #ES2015 #ES6
Have you ever used the defineProperty method in #JavaScript? It allows configuring a property. I can't imagine a lot of use cases for it except forcing a particular way of programming. But when you have to force it programmatically haven't the things gone wrong?🤔 #ExploringES6
Reading section "28.5.4.3.1 Use cases for invoke" in #ExploringES6 indeed makes me think that things are covered deeply in this book.😆 #ES2015
If you ever wondered which use cases do proxies in #JavaScript have, here is a good example: Proxies are ideally suited for implementing revocable references because they can intercept and forward operations. #ES2015 #ExploringES6
Using proxies, you can allow negative indices for the arrays in #JavaScript. E.g., arr[-1] will return last value. Here is the link to learn more: exploringjs.com/es6/ch_proxies…. #ES2015 #ExploringES6
On Monday #ExploringES6 touched upon the subject of metaprogramming and today #DesignIt introduces metamodeling. Metamodel defines the concepts used in a model and the rules for how those concepts are applied. #SoftwareArchitecture #DesignThinking
Proxies can be used as prototypes in #JavaScript. You can redefine default behavior for getting non-existent values. Do not know if this is a good practice🤔 #ES2015 #ExploringES6
Even more, revocable proxies exist in #JavaScript. That means that you want to cancel any further interception. const {proxy, revoke} = Proxy.revocable(target, handler); #ES2015 #ExploringES6
Guess I've forgotten to describe what proxies in #JavaScript are. They are objects that let you intercept and customize operations on other objects. E.g., getting and setting value, checking the inclusion of a property by an object. #ES2015 #ExploringES6
Among these types of reflective metaprogramming, ES5 doesn't support intercession. Proxies exist to fill this gap. #ES2015 #JavaScript #ExploringES6
Explanation of the difference between programming and metaprogramming. #ES2015 #JavaScript #ExploringES6
Explanation of the difference between programming and metaprogramming. #ES2015 #JavaScript #ExploringES6
Besides having the pitfall described in Exploring ES6 JavaScript Set might be used to find out a number of unique characters in the string. #JavaScript #JS #ExploringES6 #JavaScriptTip
Generator not only generates in #JavaScript but also consumes data. Please notice that passing data appears on the second and third calls of next() method. #ExploringES6 #JavaScript #ES6 #ES2015
You can redefine default then() behavior if you resolve Promise with thenable object, the one with then interface. #JavaScript #ES2015 #ExploringES6
Always thought what race() method of a Promise in #JavaScript might be used for. It appears to be quite useful when implementing request timeout. #ES2015 #ExploringES6
You can block browsers reaction to any action by running this simple function. But somehow browser remembers your actions and applies them after synchronous part of the code is finished. Do you know how? #ES2015 #ExploringES6
Proxies can be used as prototypes in #JavaScript. You can redefine default behavior for getting non-existent values. Do not know if this is a good practice🤔 #ES2015 #ExploringES6
There is an interesting case for using #WeakMap in JavaScript. It is suitable for flexible and reliable encapsulation in classes. I've also read the description of this nice method in Mastering JavaScript Object-Oriented Programming book by @andychiare. #JavaScript #ExploringES6
Iteration and generation are close in #JavaScript. To find out more have a look at the inheritance diagram and read the following part of the chapter: exploringjs.com/es6/ch_generat…. #ExploringES6 #ES6 #ES2015
This scheme describing promises in #JavaScript might not be evident at first, but when the understanding is settled it is useful to overview. Here is the chapter containing it: exploringjs.com/es6/ch_promise…. #ES2015 #ExploringES6
Something went wrong.
Something went wrong.
United States Trends
- 1. Steph 61.8K posts
- 2. Wemby 28.8K posts
- 3. Spurs 29.3K posts
- 4. Draymond 11.4K posts
- 5. Clemson 11K posts
- 6. Louisville 10.8K posts
- 7. #SmackDown 49.5K posts
- 8. Zack Ryder 15.2K posts
- 9. Aaron Fox 2,024 posts
- 10. #DubNation 1,943 posts
- 11. Harden 13K posts
- 12. Dabo 1,960 posts
- 13. Brohm 1,604 posts
- 14. Marjorie Taylor Greene 42.4K posts
- 15. Landry Shamet 5,709 posts
- 16. Massie 51.8K posts
- 17. Matt Cardona 2,780 posts
- 18. Mitch Johnson N/A
- 19. #OPLive 2,444 posts
- 20. Miller Moss N/A