Skip to content

Instantly share code, notes, and snippets.

View bjf5201's full-sized avatar

Bethany Fannin bjf5201

View GitHub Profile
@bjf5201
bjf5201 / summer_reading.js
Last active June 12, 2022 18:02
2022 Reading Goal
// 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;