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 trialConary Beckford
Full Stack JavaScript Techdegree Student 5,046 PointsConsole log not responding.
I have entered the same function shown in the video and yet nothing comes up into my console.
window.setTimeout((something) => {
console.log(something);
}, 3000, 'Greetings, everyone!');
4 Answers
Steven Parker
231,236 PointsOn line 26 of "index.html" there is a hyphen instead of an equal sign, which prevents the script from loading:
<script src-"temp.js"></script> <!-- current line 26 -->
<script src="temp.js"></script> <!-- but it should be this -->
Steven Parker
231,236 PointsYour code is correct. Could it be that scripts are disabled in your browser?
Conary Beckford
Full Stack JavaScript Techdegree Student 5,046 PointsHow do I enable my scripts in browser?
Conary Beckford
Full Stack JavaScript Techdegree Student 5,046 PointsI do have scripts enabled. What else could this be?
Steven Parker
231,236 PointsAre you using workspaces? If so, make a snapshot of your workspace and post the link to it here to facilitate a complete analysis.
Conary Beckford
Full Stack JavaScript Techdegree Student 5,046 Pointshttps://w.trhou.se/iyxv4nuc57 ....here is my workspace link.
Conary Beckford
Full Stack JavaScript Techdegree Student 5,046 PointsConary Beckford
Full Stack JavaScript Techdegree Student 5,046 PointsAwsome, thanks for catching that.