Dart, a language from Google to replace JavaScript and PHP

Dart runs in the browser and on the server, it provides the features of a very classical application programming language.

The new language from Google is intended to be more structured like Pascal at one time against Basic. Available at dartlang.org, it offers an alternative to JavaScript in the browser but also on the server or for native code in the browser.
It implements concurrency in the form of communicating actors with their own environment and has true classes.

Dart programming language and web apps

Faced with fundamental design problems in JavaScript that can not be solved by incremental improvements, Google opted for a radical solution: completely replaces the language with another, with a syntax that is between that of JavaScript and Java. But JavaScript is a language that is interesting in its overall design, it is the details that are weak and Dart unfortunately change the overall design to return to the classics.

Another solution would have beem better: to allow browsers to use any programming language. Or use a bytecode for which we could create different languages ​​in frontend.
It is unlikely that Microsoft or Apple adopt this language before a long time, so the virtual machine is confined to Chrome. In fact Microsoft chose a different option: to develop TypeScript, a language that is compiled to JavaScript.

The syntax of Dart is more than classic, it's actually a language of the 80. Scriptol dating from 2001 was already more innovative. However, Dart will bring a progress with concurrency.
Google promises that programming will become interactive thanks to tools, you will edit and run a program directly, and change the code according to the results. For a Web application, it will be a revolution.
Programs may be evolving. You can begin with a simple script with dynamic variables, which can be transformed into software when you add typed variables and classes.
Another advantage is the ability to use the same language on the server and the browser, which simplifies programming, but we can already do that with Node.js (and the Google's V8 compiler).

Dart will be in competition with Harmony, the final version of JavaScript in development which will also include classes. A Cloud IDE named Brighty will help to develop web applications. It will work with Dart or JavaScript.

Dart Features

A Dart program can be executed by a virtual machine or compiled into JavaScript and thus produce a code usable by all browsers.
On Chrome, a plugin will use the virtual machine.

We see that there is really nothing innovative in all this, nothing but a kind of upgrading to norms of yesteryear of JavaScript, a language created in the 90s, or a modern version of C. The language is not uninteresting and offers powerful features, but really lacks imagination.

Example of code

Hello:

main()
{
  print("Hello World!");
}

Function:

String catstr(String str)
{
  String x = "Message : $str";
  return x;
}
print(catstr("Hello"));

We can concatenate two variables a and b with: String x = "$a$b";

Objects:

Class Vehicle
{
  num fuel;
  Vehicule(num this.vitesse, num this.passengers);
  num distance() // the type is optional.
  {
    print fuel / this.passengers;
  }
}
Class Car extends Vehicle
{
   ...
}

Dart will it be supported on all browsers?

There is a version of Chrome which integrates a Dart virtual machine called Dartium. However, the community that develops Webkit refused its implementation on the ground that is not part of the standard Web. It's the same thing on the side of Mozilla where one believes that a future version of JavaScript could add the same improvements that brings Dart, mainly the class model and typed variables (without losing the advantages of JavaScript). We do not mean that Microsoft has issued a negative opinion on the subject, or that Apple is far from wanting to support Google.

It seems that in the near future, Dart will only work on Chrome and since it runs on Android, provides an alternative to native programming. But one can imagine a Dart plugin for other browser, such as Google Frame that enables support for HTML 5 on older version of Internet Explorer.

Documents and resources

See also...