Day of the week: Difference between revisions

Content added Content deleted
(→‎{{header|CoffeeScript}}: made first example nicer, snipped second example)
(→‎{{header|CoffeeScript}}: oops, no such thing as output tag)
Line 444: Line 444:
<lang coffeescript>console.log year for year in [2008...2121] when new Date(year, 11, 25).getDay() is 0</lang>
<lang coffeescript>console.log year for year in [2008...2121] when new Date(year, 11, 25).getDay() is 0</lang>


<output>
output

<lang>
2011
2011
2016
2016
Line 462: Line 464:
2112
2112
2118
2118
</output>
</lang>


=={{header|ColdFusion}}==
=={{header|ColdFusion}}==