const days = ['sunday', 'monday', 'tuesday', 'wednesday', 'thursday', 'friday', 'saturday'];
for(let day of days){
console.log(day[0]);
}
This is enables me get a hold of the first letter of each word in the array, but what manipulation can i do to capitalize it. I have already tried the day[0].toUpperCase() method.