# Doodle: Data of My Life
```javascript=
let weekDay = {
day: ["mon", "tues", "wed", "thurs", "fri"],
alarm:true
}
let weekEnd = {
day: ["sat", "sun"],
alarm: false
}
let toDay = "sun";
function alarmClock (toDay) {
if weekDay = toDay //check to see if today is a weekday or weekend
then
console.log("Rise and shine!");
else
do nothing; // alarm will not ring if today is not a weekday
}
alarmClock(toDay);
// I sleep in a litle bit on the weekends
function yoga () {
stretch ();
meditation();
}
yoga();
function eatMeal () {
//select meal
//if meal require cooking
// then cook meal
// else prepare and eat meal
}
eatMeal();
function homework (){
// check to-do list and canvas
// if incomplete items exist
// then complete items
// else do reading (read ahead for class)
}
homework();
eatMeal();
function netflix(){
//select show or movie
//watch show or movie
}
netflix();
eatMeal();
sleep();
```