It looks like Google's Dart language doesn't allow you to call native js functions (say, using jQuery or my existing .js code).
Does CoffeeScript allow any of the above?
|
It looks like Google's Dart language doesn't allow you to call native js functions (say, using jQuery or my existing .js code). Does CoffeeScript allow any of the above? |
|||
|
|
|
yes you can use js libaries. a quick google found some ineresting blog's on the subject |
|||
|
|
|
You can use jQuery and native JavaScript functions. You simply need to write them in the correct CoffeeScript syntax. Bear in mind that CoffeeScript is a source to source compiler. It will transpile CoffeeScript to JavaScript. It won't know whether any specified functions exist. So if you wrote this CoffeeScript, it would compile just fine:
Note that
You would then run into the error as a JavaScript error once you ran this in your browser, not a CoffeeScript error. You can use the "Try CoffeeScript" link on CoffeeScript site to see how the translation takes place and try to run it. You can also try it in jsFiddle by changing the Panels option to use CoffeeScript instead of JavaScript. |
||||
|
|
|
CoffeeScript is JavaScript. Or rather, more precisely, CoffeeScript's only purpose is to make writing JavaScript an easier, 'cleaner' experience. All the CoffeeScript code you write is compiled into Javascript. The CoffeeScript compiler only checks your code's syntax. It never bothers to check and see if the variables and functions you're referencing actually exist (this would be impossible to do with running the file anyway). So you can certainly call 'native' JavaScript functions with your CoffeeScript code but that's simple because they come out the other side as simple JavaScript function calls. |
|||
|
|