Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

daniel barreto
4,144 PointsI am unable to run the code. Would someone help me run the code?
When I make the console.log( ) command nothing comes up on the oncoming screen where my code is supposed to print.

josh pulley
Courses Plus Student 4,623 PointsI'd say make sure that the javascript file is linked correctly in the index.html secondly make sure to save your javascript file before refreshing the page to test your code
Ensure that there are no errors.
3 Answers

Haisan Williams
2,832 Pointsconst secsPerMin = 60; const minsPerHour = 60; const hoursPerDay = 24; const daysPerWeek = 7; const weeksPerYear = 52;
const secondsPerDay = secsPerMin * minsPerHour * hoursPerDay
console.log(There are ${secondsPerDay} seconds in a day
);
const yearsAlive = 50.5 const secondsAlive = secsPerMin * minsPerHour * hoursPerDay * daysPerWeek * weeksPerYear * yearsAlive;
console.log(I've been alive for more than ${secondsAlive} seconds
);

Adonis Doxilly
3,915 Pointsconst SecsperMin = 60; const MinPerHr = 60; const HrPerDay = 24; const DaysPerWk = 7; const WkPerYr = 52; const yearsAlive = prompt("What's your age?");
const SecsperYr = SecsperMin * MinPerHr * HrPerDay * WkPerYr;
console.log(There are ${SecsperYr} seconds in a day.
);
const Alive = SecsperYr * parseInt(yearsAlive);
console.log(I've been alive for ${Alive} seconds.
);

Carlos Ortega Leon
3,248 Pointsconst secsPerMin = 60; const minsPerHour = 60; const hourPerDay = 24; const daysPerWeek = 7; const weeksPerYear = 52;
const secondsPerDay = secsPerMin * minsPerHour * hourPerDay;
console.log(There are ${secondsPerDay} seconds in a day.
);
const yearsAlive = 30;
const secondsAlive = secsPerMin * minsPerHour * hourPerDay * daysPerWeek * weeksPerYear;
console.log(I've been alive for more than ${secondsAlive} seconds!
);
Reggie Williams
Treehouse TeacherReggie Williams
Treehouse Teacherdaniel barreto are you getting any errors? Can you share a snapshot of your code?