Naftuli Kay
Naftuli Kay

Reputation: 91630

Alternative languages to JavaScript?

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

Answers (2)

Jan
Jan

Reputation: 8141

List of Languages that compile to JS

Upvotes: 2

Dmitry
Dmitry

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

Related Questions