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 trial

JavaScript JavaScript Numbers Working with Numbers Create a Program with Math

Joseph Yap
seal-mask
.a{fill-rule:evenodd;}techdegree
Joseph Yap
Full Stack JavaScript Techdegree Student 1,764 Points

My 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!);

Caleb Kemp
Caleb Kemp
12,754 Points

looks 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

Steven Parker
Steven Parker
230,230 Points

A 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.