mirror of
https://github.com/jashkenas/coffeescript.git
synced 2022-11-09 12:23:24 -05:00
docs for assignment-as-expression
This commit is contained in:
parent
adaae0ccae
commit
834442148b
21 changed files with 190 additions and 128 deletions
|
@ -1,5 +1,6 @@
|
|||
(function(){
|
||||
var numbers = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9];
|
||||
var three_to_six = numbers.slice(3, 6 + 1);
|
||||
var numbers_copy = numbers.slice(0, numbers.length);
|
||||
var numbers, numbers_copy, three_to_six;
|
||||
numbers = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9];
|
||||
three_to_six = numbers.slice(3, 6 + 1);
|
||||
numbers_copy = numbers.slice(0, numbers.length);
|
||||
})();
|
Loading…
Add table
Add a link
Reference in a new issue