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 trialDennis Eitner
Full Stack JavaScript Techdegree Graduate 25,644 Pointsnode app.js returns undefined in console
I installed node and seems to work fine, but when i call a file it returns "undefined". What am I missing?
3 Answers
jsdevtom
16,963 PointsYou normally get the response 'undefined' if you don't specify something to return in the function, 'undefined' is returned by default. Otherwise, the following will determine whether or not you are in the wrong directory:
1 Open up the terminal and create a file:
cat > test.js
2 Now enter some console log text in the file that you just created:
console.log("Hello");
3 Save the file with 'Ctrl + D'
4 Now run the code:
node test.js
If it works, then you are probably trying to run your other code from the wrong directory in the terminal.
Dennis Eitner
Full Stack JavaScript Techdegree Graduate 25,644 PointsI am in the right directory in terminal. npm and node is running. just installed it today. When I type: node test.js in terminal i get the message "undefined". So node is running but not in the right directory i suppose.
Aaron Martone
3,290 PointsWhat is in your app.js? Is it a function? Does that function not explicitly return a value? Any function not given an explicit value to return will by default return undefined
.
jsdevtom
16,963 Pointsjsdevtom
16,963 PointsI would need more information to definitely say. Things to check anyway: have you copied the code in this video, or could there be a mistake? Are you in the right directory in your terminal? Have you run npm install? Does node work with simple scripts such as
console.log("Hello World")
inside a file saved as test.js and then runningnode test.js
? Let me know :-)