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 trialMikias Wondyfraw
Full Stack JavaScript Techdegree Graduate 14,312 PointsHi! I have added two stars to the screen, however, when I clicked on check work. It did register it correctly.
I wanted to add stars to the empty platform, but I didn't know how to do it. It would be great to go over it.
1 Answer
Steven Parker
231,236 PointsYou forgot to show your code, so where did you put the stars that passed the challenge?
The first two arguments to the starCreate
function are the x and y coordinates of the upper-left corner of where the star will go, and you can use the stars already there as a reference. For example, you might place a star at the same x-position as the one already farthest right (425) but at the same level as the lowest one (200):
starCreate(425, 200, 'star');
Then you could add the next one to the same level but a bit further to the right.
Mikias Wondyfraw
Full Stack JavaScript Techdegree Graduate 14,312 PointsMikias Wondyfraw
Full Stack JavaScript Techdegree Graduate 14,312 PointsI forgot to screenshot my code. Thanks for your response.
Steven Parker
231,236 PointsSteven Parker
231,236 PointsMikias Wondyfraw — Glad to help. You can mark a question solved by choosing a "best answer".
And happy coding!