Looking at this CoffeeScript tutorial : http://jashkenas.github.com/coffee-script/
I don't quite see what the Splats is for. What is this construction? Where does it come from (historically)
|
Looking at this CoffeeScript tutorial : http://jashkenas.github.com/coffee-script/ I don't quite see what the Splats is for. What is this construction? Where does it come from (historically)
| |||
|
feedback
|
|
The term "splat operator" comes from Ruby, where the CoffeeScript adopted Ruby-style splats very early on (see issue 16), but at Douglas Crockford's suggestion, the syntax was changed from As to what they actually do, splats slice the
In this case,
In the first two cases, if the function receives 0-1 arguments, Since JavaScript doesn't allow multiple signatures for functions with the same name (the way C and Java do), splats are a huge time-saver for dealing with varying numbers of arguments. | |||
|
feedback
|
|
Splats is the term for the use of the | |||||
feedback
|
|
I think it is a syntactic sugar for javascript's arguments object. The idea may come form ruby's splat operator | |||
|
feedback
|
|
if you know python, for example:
it works in assginments, too:
| |||
|
feedback
|