Reputation: 91630
Having recently stumbled across improvements to CSS such as Less and Sass, I wondered if there were any similar types of languages which compile into JavaScript. I found CoffeeScript, and, of course, GWT, but are there any others?
I'm not really too fond of CoffeeScript, in my opinion it doesn't really add much to my toolkit. Are there other alternative browser scripting languages which compile into JavaScript?
Upvotes: 1
Views: 754
Reputation: 3169
You can compile C/C++ code into Javascript using emscripten. So you can compile scripting language interpreter written in C/C++ into JS (for example Ruby/Python/Lua etc.)
Upvotes: 2