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 trialdaniel barreto
4,145 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?