Simple Promise Example #1234
Replies: 2 comments
-
Posted at 2020-08-17 by @gfwilliams Thanks - looks great! |
Beta Was this translation helpful? Give feedback.
-
Posted at 2020-08-17 by @allObjects @davidv, I'd like you to be a bit more explanatory about what you intend to convey with your example(s). What is the console output? On related note, what is your reasoning to use On an unrelated note - since JavaScript is object-oriented and related practice is to use Upper/lower case to distinguish Class/Prototype 'things' from method/function/members/properties 'things' - what is the reasoning to use Uppercase identifiers for the functions? Doing an analysis of what is effectively going on, I see line 34 as the only Promise-worthy item. May be I look at the example(s) way too narrow minded, and you have a grander vision why to use Promises even though no asynchronous things happen (except - as already mentioned - in line 34). To me, it almost feels as: Why simple, if complicated/confusing works too? |
Beta Was this translation helpful? Give feedback.
-
Posted at 2020-08-15 by DavidV
This is a super simple example of using promises to order execution of functions asyncronously.
Beta Was this translation helpful? Give feedback.
All reactions