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

APIs

Display the time based on timezone

Hi everyone

Trying to display the correct sunrise and sunset on a weather app but can't figure how to do it. I already formatted the time but now i need display it correctly on every user location. Can somebody help? Many thanks.

function formatTime(time) { let date = new Date(time * 1000); let hours = date.getHours(); let minutes = "0" + date.getMinutes(); let formattedTime = ${hours}:${minutes.substr(-2)}; return formattedTime; }

var sunrise = data.sys.sunrise; var sunset = data.sys.sunset;

$('.sunrise').html(Sunrise <br> ${formatTime(sunrise)}); $('.sunset').html(Sunset <br> ${formatTime(sunset)});