I was reading on DartVM performace and saw this:<p>https://www.dartlang.org/performance/<p>I was amazed at how the DartVM is faster than the famous "screaming fast" V8. Are these benchmarks true or are they just advertisement from Dart?
Dart is built by the same team that wrote V8. They know what makes JavaScript difficult to optimize and made Dart much easier for make fast. Not only is the Dart VM faster than V8, but it's much, much simpler.
Anything statically typed can easily beat js at speed,
there is no magic here. Obvious problem with dart is that on almost every browser it will be translated to js.
Also you want to compare it with asm.js.