Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialShawn Butts
3,271 PointsMy solution to the coding challenge for secondsAlive, I may of taken the "math illiterate" route.
const secsPerMin = 60; const minsPerHour = 60; const hoursPerDay = 24; const daysPerWeek = 7; const weeksPerYear = 52; const year = 365; /* I added this variable */
const secondsPerDay = secsPerMin * minsPerHour * hoursPerDay;
console.log(There are ${secondsPerDay} seconds in a day.
);
const yearsAlive = 28;
let secondsAlive = secondsPerDay * year * yearsAlive;
console.log(I've been alive for more than ${secondsAlive} seconds.
);
Steven Parker
231,248 PointsThe backticks are causing local code quotes since the Markdown formatting isn't being used.
1 Answer
Steven Parker
231,248 PointsWhen posting code, always use Markdown formatting to preserve the code's appearance and retain special symbols. With the formatting, it looks like this:
const secsPerMin = 60;
const minsPerHour = 60;
const hoursPerDay = 24;
const daysPerWeek = 7;
const weeksPerYear = 52;
const year = 365; /* I added this variable */
const secondsPerDay = secsPerMin * minsPerHour * hoursPerDay;
console.log(`There are ${secondsPerDay} seconds in a day.`);
const yearsAlive = 28;
let secondsAlive = secondsPerDay * year * yearsAlive;
console.log(`I've been alive for more than ${secondsAlive} seconds.`);
While this solution works, it doesn't make use of the defined constants for daysPerWeek
and weeksPerYear
. You might try using them in the calculation instead of creating another constant (though I must admit, your strategy yields a slightly more accurate value ).
Mark Casavantes
2,880 PointsMark Casavantes
2,880 PointsHello Shawn,
On the lines that have "console.log" you need a back tick inside your (
).