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 trialJoseph Yap
Full Stack JavaScript Techdegree Student 1,764 PointsMy Solution for Years Alive
const secsPerMin = 60; const minsPerHours = 60; const hoursPerDay = 24; const daysPerWeek = 7; const weeksPerYear = 52;
const secondsPerDay = secsPerMin * minsPerHours * hoursPerDay;
console.log(There are ${secondsPerDay} seconds in a day.
);
const secondsPerYear = secondsPerDay * 365;
const yearsAlive = 27;
console.log(I've been alive for more than ${secondsPerYear * yearsAlive} seconds!
);
Steven Parker
231,236 PointsA better way to display code is to use "Markdown" formatting. There's a pop-up "cheatsheet" below, or you can watch this video on code formatting.
Caleb Kemp
12,755 PointsCaleb Kemp
12,755 Pointslooks good, ps right now the backticks (`) are not displaying in your console.log statements. Putting a backslash ( \ ) in front of them like this, \` will fix that though. Great job