InterviewSolution
Saved Bookmarks
| 1. |
What Is Function In Coffeescript? |
|
Answer» Functions in CoffeeScript is an (OPTIONAL) list of PARAMETERS FOLLOWED by an arrow and then the function BODY. For example, log = (message) -> console.log message Functions in CoffeeScript is an (Optional) list of parameters followed by an arrow and then the function body. For example, log = (message) -> console.log message |
|