Advertisement
mbratanov

07. Working Hours

Feb 23rd, 2025
228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function workingHours(hour, dayOfWeek) {
  2.     if (dayOfWeek === 'Sunday' || hour < 10 || hour > 18) {
  3.         console.log('closed');
  4.     } else {
  5.         console.log('open');
  6.     }
  7. }
  8.  
  9. workingHours(11, 'Monday');
  10. workingHours(19, 'Friday');
  11. workingHours(11, 'Sunday');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement