mirror of
https://github.com/jashkenas/coffeescript.git
synced 2026-02-18 11:31:20 -05:00
15 lines
217 B
JavaScript
15 lines
217 B
JavaScript
(function(){
|
|
var object = {
|
|
a: 1,
|
|
// Comments between the elements.
|
|
b: 2,
|
|
// Like this.
|
|
c: 3
|
|
};
|
|
var array = [1,
|
|
// Comments between the elements.
|
|
2,
|
|
// Like this.
|
|
3
|
|
];
|
|
})(); |