>"In 1998, a complex JavaScript application was a few dozen lines of code. By 2008, leading-edge Web applications like Hotmail, Gmail, and CNN.com included hundreds of thousands of lines of JavaScript," said the Microsoft JavaScript team members, Shanku Niyogi, Amanda Silver, John Montgomery, Luke Hoban, and Steve Lucco. "Today, there are Web applications with a million lines of JavaScript. These Web applications look more and more like the applications we run on our desktops."
i'll orgasm once javascript displaces other languages and is the only option for application development. the web is the future and javascript is definite the most elegant language in use today. it's the right tool for the job, people. get in or get the fuck out
In the old days, desktop applications could at full speed run on computers with a few MHz of CPU speed and a few megabytes of RAM. Now, they require a few GHz of CPU speed and a many megabytes of RAM, because they're all written in JavaScript.
One thing I was looking forward to looking at Dart was static types. If you have static typing in JavaScript, you could really drive performance ... Once you figure that out, there's not so much difference between typed languages like C or C++.
IHBT!
Name:
F r o z e n V o i d !!mJCwdV5J0Xy2A212011-11-25 12:04
If you really needs typed vars you can hack them in with typed arrays(use vars from 1 array elem only)
a=Uint32Array(1) //<-- this is a uint32 pointed value as array
a[0]=1
a[0]-=2
document.write(a[0])
result:
4294967295
Name:
Anonymous2011-11-25 14:06
>>17
Hashtable object to represent a single integer? Terrible!