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 trialJames Barrett
13,253 PointsWhy do we need to use bracket syntax when calling createElement()?
Hi guys,
In this code snippet:
function createElement(elementName, property, value) {
const element = document.createElement("span");
element[property] = value;
return element;
}
Why can't we use element.property = value;
? I tried using this however the name does not appear when you submit the form. Moreover there are no errors in the console?
Some clarification on this would be great.
Thanks, James.
2 Answers
Clayton Perszyk
Treehouse Moderator 48,850 PointsHey James,
You must use square brackets since you are using the string passed to the property parameter; if you use dot notation JS thinks you're looking for a property with the name property. When you put it in brackets, the property parameter gets evaluated to a string and the string is used to access the property.
Here are a couple links that explains this concept better than I have:
- https://medium.com/@prufrock123/js-dot-notation-vs-bracket-notation-797c4e34f01d#.b4fzvu871
- http://stackoverflow.com/questions/4968406/javascript-property-access-dot-notation-vs-brackets
Best,
Clayton
Oriol Jurnet
9,515 PointsI had the same doubt and the explanation it's just perfect. Many thanks Clayton Perszyk !
James Barrett
13,253 PointsJames Barrett
13,253 PointsAwesome, thanks a lot Clayton Perszyk :)
Aurelian Spodarec
10,801 PointsAurelian Spodarec
10,801 PointsAwesome! Was confused by that too.
Wes House
6,944 PointsWes House
6,944 PointsThanks for those links!