这是代码
function toDo(day){
// 1. check IF day is saturday OR sunday
if (day==="saturday"||day==="sunday"){
// 2. return the weekendChore function
return weekendChore();
}
else{
// 3. otherwise return the weekdayChore function.
return weekdayChore();
}
}
// These are the functions we will return:
function weekendChore(){
alert("Weekend: walk 9am, feed at 4pm, walk at 10pm");
return 1;
}
function weekdayChore(){
alert("Weekday: feed at 12pm, walk at 1pm");
return 0;
}
我是 Javascript 新手,正在努力学习。我搜索了,没有找到对上面提到的代码中return 1和return 0的作用的正确解释。你能解释一下吗?另外,你能用一些其他的例子来回放吗?谢谢