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

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

Works for me, you must remember that arrow syntax is not supported by IE, maybe this is what you are using to test the code

https://caniuse.com/#feat=arrow-functions

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