calendar BG color

by amitava82

JavaScript

$(document).ready(function(){

    var color = new Array('red', 'blue', 'green', 'yellow');
    
    var d = new Date();
    
    
    
    console.log(getBgColor(0, 3))

});

function getBgColor(start, end){
    
    if (start >= 0 && end <=4){return 'blue'}
}