Not sure where to start?
Bootcamp
Study group
Collaborate with peers in your dedicated #study-group channel.
Code reviews
Submit projects for review using the /review command in your #code-reviews channel
/review
Karma
scrimba
const LOCAL_FORECAST = { today: { min: 72, max: 83 }, tomorrow: { min: 73.3, max: 84.6 }};function getMaxOfTmrw(forecast) { "use strict"; const maxOfTomorrow = undefined; return maxOfTomorrow;}console.log(getMaxOfTmrw(LOCAL_FORECAST));