Can I assign multiple variables in coffee
like in python
:
a, b, c = 'this', 'is', 'variables'
print c
>>>variables
Can I assign multiple variables in coffee
like in python
:
a, b, c = 'this', 'is', 'variables'
print c
>>>variables
- 1 There is always the coffee script website which allows you to try simple snippets. For you case: goo.gl/pRqaWS – TheHippo Commented Mar 27, 2014 at 15:42
1 Answer
Reset to default 15Try with [a, b, c] = ['this', 'is', 'variables']
.