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 trialBrian Fong
Courses Plus Student 17,935 PointsArrow functions not supported in Node challenge when they've been supported in the latest version of Node?
Node is supposed to support arrow functions since it's based off of V8. My guess is it's turned off in the install settings for the treehouse console?
The code works if I replace it with a normal anonymous function and omit the arrow function.
It just doesn't make sense when you put a workshop talking about arrow functions and not have them supported for whatever upcoming lessons in the Full Stack Javascript track. Notice how const works but the treehouse code checker says I didn't define error in the arrow function.
var http = require("http");
const request = http.get("http://teamtreehouse.com/chalkers.json", function(response){
console.log(response.statusCode);
});
request.on('error', (error) => {
console.error(error.message);
});
1 Answer
Iain Simmons
Treehouse Moderator 32,305 PointsIf I create a new Workspace and use the 'Node.js' template as a starting point, it runs Node v6.2.2 which supports arrow functions: http://w.trhou.se/8fmlgab5fg
I expect that some of the courses have been built on older Workspace templates running older versions of Node. Technically you could upgrade and use arrow functions, but with a lot of things JavaScript and the web, version management can be tricky, as you want a large majority of users to be able to use your code/app, but don't want to miss out on newer features.
Another good example is the React course, where they aren't using the ES6/ES2015 versions of creating components, despite Facebook recommending it.
I guess another reason is so that they can concentrate on teaching you whatever the course is on, rather than also trying to simultaneously teach ES2015.