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 trialTerence Fong
1,499 PointsBlank page result
I checked my code, there is no syntax error. However, when I press preview, there is no result ... just a blank page.
const planet=[
{
name: 'Mars',
diameter: '4,212 mi',
moons: '2',
temp: '-153 to 20 ยฐC',
orbitDays: '687',
orbitYears: '1.9',
description: 'The fourth planet from the Sun and the second smallest planet in the solar system. Named after the Roman god of war, Mars is also often described as the โRed Planetโ due to its reddish appearance. It\'s a terrestrial planet with a thin atmosphere composed primarily of carbon dioxide.',
facts: 'Mars has the largest dust storms in the solar system. They can last for months and cover the entire planet. On Mars the Sun appears about half the size as it does on Earth.'
},
{
name: 'Saturn',
diameter: '72,367.4 mi',
moons: '62',
temp: '-178 ยฐC',
orbitDays: '10,756',
orbitYears: '29.5',
description: 'Saturn is the sixth planet from the Sun and the most distant that can be seen with the naked eye. Saturn is the second largest planet and is best known for its fabulous ring system that was first observed in 1610 by the astronomer Galileo Galilei.',
facts: 'Saturn was known to the ancients, including the Babylonians and Far Eastern observers. It is named for the Roman god Saturnus, and was known to the Greeks as Cronus.'
}
];
function createPlanetHTML(planet) {
return `
<div class="card">
<div>
<img src="img/${planet.name}.jpg" alt="${planet.name}">
</div>
<h2>${planet.name}</h2>
<p>${planet.description}</p>
<h3>Planet Profile</h3>
<ul>
<li><strong>Diameter</strong>${planet.diameter}</li>
<li><strong>Moons</strong>${planet.moons}</li>
<li><strong>Temperature</strong>${planet.temp}</li>
<li><strong>Orbit Period</strong>${planet.orbitDays} days ${planet.orbitYears} years</li>
</ul>
<p>${planet.facts}</p>
</div>`;}
document.querySelector('body').innerHTML=planets.map(planet=>createPlanetHTML(planet)).join('');
Mod edit: added markdown syntax for code. You can add three backticks on the line before and after your code to help with forum display. Check out the "markdown cheatsheet" linked below the comment box for more examples.
2 Answers
Cameron Childres
11,820 PointsHi Terence,
Your array is named "planet" and you are mapping over "planets". If you change your array to be called "planets" it will match the code in the video and should display correctly.
tomaszfurmanczyk
Full Stack JavaScript Techdegree Student 18,242 PointsMake sure you correct the variable naming convention:
const planets
Then you should be able to compile your code