|
|
|
|
|
by spankalee
4364 days ago
|
|
Dart is much more of a scripting language than C++. It makes as many code issues static warnings and runtime errors as it can, rather than runtime errors, so you can run a partially incorrect program. Dart is also strongly typed, doesn't have pointers, has GC, has no shared-memory concurrency, uses dynamic dispatch, don't require a compiler (for development), has full access the the DOM (with a much nicer API than in JavaScript!)... |
|
Like, when I use DOM in any language, it will be conform the the DOM spec, like having the same classes, methods, etc.?