2015-06-19 16:41:52 -07:00

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';
};