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 Node.js Basics (2014) Building a Command Line Application Parsing JSON

Taylor Laine
Taylor Laine
9,629 Points

How to pull C# from profile object

To pull the JavaScript points: profile.points.JavaScript This works just fine.

But when I try to pull information for C#. profile.points.C# I get and error as expected with the # symbol

What is the syntax to pull this information?

1 Answer

Seth Kroger
Seth Kroger
56,413 Points

When there are characters illegal for the dot notation you have to use array notation with the name as a string:

profile.points['C#'];
Taylor Laine
Taylor Laine
9,629 Points

Fantastic I was unaware of that. That is great information thank you so much!