|
|
|
|
|
by Nemcue
4424 days ago
|
|
Sure — I guess it's nice that Dart comes with a lot of useful things built in. Outside of Dart we already have pretty good solutions for Promises (with Promise A+ compatible libs; Q, RSVP etc) and modules (ES6 modules, Require etc), which /kind of/ makes those points moot. Which leaves type checking and autocompletion as the big benefit. Which are nice, I guess. |
|
The other question we should ask is, why didn't the original author use those new shiny JS features in his app? He's a crazy smart developer. My hypothesis: because the out-of-the-box dev experience doesn't include modules, promises, etc, there's a higher barrier to using the new shiny JS features because the developer needs to first A) know about them B) find the right polyfill.
Thoughts?