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

JavaScript JavaScript and the DOM (Retiring) Responding to User Interaction Functions as Parameters

Duy Khanh
PLUS
Duy Khanh
Courses Plus Student 4,911 Points

Why my console.log not working ?

I use arrow function for this video but why is not working ? when i use console in browser and paste my code it working normally ?

const say = (something) => {
console.log(something);
}
let exec = (func,arg) => {
    func(arg);
}
exec(say,'hi');

1 Answer

Duy Khanh
Duy Khanh
Courses Plus Student 4,911 Points

yeah the chrome maybe sometime have a little bit laggy T.T