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 trialBlake Collins
Front End Web Development Techdegree Graduate 20,564 PointsCallback Function Challenge
I'm having a hard time passing this challenge. I think I'm missing something simple but can't figure it out.
() => {
console.log("Hello World!");
}
functionRunner () =>
<!DOCTYPE html>
<html lang="en">
<head>
<title></title>
<link rel='stylesheet' href='styles.css'>
</head>
<body>
<section>
<p>Open your browser's console to see the results</p>
</section>
<script src='runner.js'></script>
<script src='app.js'></script>
</body>
</html>
function functionRunner(callback) {
callback();
}
1 Answer
Dimitar Dimitrov
11,800 PointsFirst you just need to delete the log name form the function declaration, then you copy the new anonymous function in the functionRunner() call as a paramether like this :
functionRunner(function() {
console.log("Hello World!");
});
Blake Collins
Front End Web Development Techdegree Graduate 20,564 PointsBlake Collins
Front End Web Development Techdegree Graduate 20,564 PointsThank you!