DEV Community

Discussion on: Daily Challenge #75 - Set Alarm

Collapse
 
fennecdjay profile image
Jérémie Astor

nicer with some formatting:

Public bool setalarm(bool employed = false, bool vacation = false){
  return !vacation && employed;
}

Interresting of you use vacation first and your use of default values 😄