最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

JavaScript: fields or properties - Stack Overflow

programmeradmin2浏览0评论

In every JavaScript tutorial that I have looked there is something mentioned about a property of an object. But why do they call it a property? e.g. constructor property, var a = function{this.b} where b is again called property. As far as I know properties have getter and/or setter, so those one should be called field, shouldn't they?

In every JavaScript tutorial that I have looked there is something mentioned about a property of an object. But why do they call it a property? e.g. constructor property, var a = function{this.b} where b is again called property. As far as I know properties have getter and/or setter, so those one should be called field, shouldn't they?

Share Improve this question edited Jan 22, 2019 at 16:10 Yves M. 31.1k24 gold badges109 silver badges149 bronze badges asked Feb 2, 2011 at 8:45 bliofbliof 2,9872 gold badges25 silver badges40 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 8

Some browser vendor have implemented getters/setters for JavaScript properties.

FF and Webkit has __defineGetter__and __defineSetter__ implemented for DOM objects and get and set for Object's which is outside of the ECMA specification. However both and also IE 8+ has the Object.defineProperty (from the ECMA specification). Read about it here

As for you original question, I would say that the reason it's called property in JavaScript is that it's a dynamic language and the basic markup uses only properties and local var's. Since everything is bound to a specific scope-hierarchy all you have is different tree-branches on each level. And Douglas Croockford named them properties :)

It's like with hash, map, dictionary and associative array; different languages like to call them different things. Terminology (unfortunately) isn't 100% transferable between programming languages.

发布评论

评论列表(0)

  1. 暂无评论