Suppose I have an array like such
const week = ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"]
How would I go about if I wanted to sort the array depending on the current day. Say, if today's friday, the week array will be like this
["Friday", "Saturday", "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday"]