mirror of
https://github.com/documentationjs/documentation.git
synced 2026-01-18 14:17:30 +00:00
21 lines
233 B
JavaScript
21 lines
233 B
JavaScript
/**
|
|
* Apples are red
|
|
*/
|
|
var apples = function() {
|
|
return 'red';
|
|
};
|
|
|
|
/**
|
|
* Bananas are yellow
|
|
*/
|
|
var bananas = function() {
|
|
return 'yellow';
|
|
};
|
|
|
|
/**
|
|
* Carrots are awesome
|
|
*/
|
|
var carrots = function() {
|
|
return 'awesome';
|
|
};
|