This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 2022 Reading Goal | |
// Use let for bookGoal in case I need to re-baseline the goal | |
let bookGoal = 100 | |
// Const is used here since the number of weeks in a year does not change | |
const numWeeks = 52 | |
// let is used here since let is used with book goal | |
let weeklyBooksReadGoal = bookGoal / numWeeks; |