admin管理员组文章数量:1341686
There will be a lot of questions needing clarifiction, so I'll try to mark them with numbers, to make it easier to respond to it.
Lately I have been studying javascript a lot. There is a subject about "everything is an object".
In my "interpretation of javascript" that means everything has the "object" in the beginning of its prototype chain. Is this correct?
But what about the primitive types (
string
,number
,boolean
,null
,undefined
)? Are they objects? I can call"aaa".length
for example. How does that work?Functions are objects implementing [[Call]] according to this. What does that mean? (I'm thinking it's something about fun.call(this, arg1), but help me understand this.
Also there is the
typeof
operator. I have linked it before from the MDN, but there are things confusing.typeof "aaa" === "string"
andtypeof String("aaa") === "string"
. This seems quite expectable, but what does String("aaa") return? I guess it parses the input somehow and returns a string primitive from it. Is this correct?typeof new String("aaa") === "object"
What? Please explain its prototype chain to me. Where and on which prototype do I have the "aaa" primitive string value on this? How does it differ fromtypeof String("aaa")
?
I have read and watched a lot of things on the subject and I think I need these clarified.
Also in your answers, if you link an external resource, please summarize its important part, and state what it means, because I have been reading through ecmascript specifications and they are quite long :).
Also if there is a difference in versions of javascript please state that too.
There will be a lot of questions needing clarifiction, so I'll try to mark them with numbers, to make it easier to respond to it.
Lately I have been studying javascript a lot. There is a subject about "everything is an object".
In my "interpretation of javascript" that means everything has the "object" in the beginning of its prototype chain. Is this correct?
But what about the primitive types (
string
,number
,boolean
,null
,undefined
)? Are they objects? I can call"aaa".length
for example. How does that work?Functions are objects implementing [[Call]] according to this. What does that mean? (I'm thinking it's something about fun.call(this, arg1), but help me understand this.
Also there is the
typeof
operator. I have linked it before from the MDN, but there are things confusing.typeof "aaa" === "string"
andtypeof String("aaa") === "string"
. This seems quite expectable, but what does String("aaa") return? I guess it parses the input somehow and returns a string primitive from it. Is this correct?typeof new String("aaa") === "object"
What? Please explain its prototype chain to me. Where and on which prototype do I have the "aaa" primitive string value on this? How does it differ fromtypeof String("aaa")
?
I have read and watched a lot of things on the subject and I think I need these clarified.
Also in your answers, if you link an external resource, please summarize its important part, and state what it means, because I have been reading through ecmascript specifications and they are quite long :).
Also if there is a difference in versions of javascript please state that too.
Share Improve this question edited Jun 20, 2020 at 9:12 CommunityBot 11 silver badge asked Feb 2, 2012 at 9:45 vinczemartonvinczemarton 8,1967 gold badges59 silver badges89 bronze badges 4- dmitrysoshnikov./ecmascript/javascript-the-core – c69 Commented Feb 2, 2012 at 9:51
- developer.mozilla/en/JavaScript is a great website devoted to answering those questions. – Greg Commented Feb 2, 2012 at 9:51
- 2 You should probably express most of these as separate questions. – Quentin Commented Feb 2, 2012 at 9:55
- @Greg Thank you very much but I have even linked from MDN. – vinczemarton Commented Feb 2, 2012 at 9:55
2 Answers
Reset to default 131\ In my "interpretation of javascript" that means everything has the "object" in the beginning of it's prototype chain. Is this correct?
Yes and no. All objects, by default, inherit from Object
. It is possible, using ES5's Object.create
, to have an object that doesn't inherit from Object
, but it's still an object.
2\ But what about the primitive types (string, number, boolean, null, undefined)? Are they objects? I can call "aaa".length for example. How does that work?
It's a misconception that everything is an object in JavaScript. Primitives aren't objects, but they can be converted to objects. When the .
operator is used, the left operand is converted to an object (if possible).
3\ Functions are objects implementing [[Call]] according to this. What does that mean? (I'm thinking it's something about fun.call(this, arg1), but help me understand this.
[[Call]]
is an internal method used by the ECMAScript implementation to mark objects as functions. It's not directly related to Function.prototype.call
, which itself is also a function marked with [[Call]]
. See 13.2.1 [[Call]].
4\ typeof "aaa" === "string" and typeof String("aaa") === "string". This seems quite expectable, but what does String("aaa") return? I guess it parses the input somehow and returns a string primitive from it. Is this correct?
String()
, when not used as a constructor, converts its argument to a string primitive. So String("aaa")
is the same as "aaa".toString()
. It's redundant and unnecessary in this case.
5\ typeof new String("aaa") === "object" What? Please explain it's prototype chain to me. Where and on which prototype do I have the "aaa" primitive string value on this? How does it differ from typeof String("aaa")?
String()
used as a constructor returns an object that inherits from String()
, as you would expect. There's a difference between a string primitive and a string object.
Almost all of your questions can be answered by reading the specification whenever you're confused about something. For your convenience, there's an annotated version of the specification available online.
1\ In my "interpretation of javascript" that means everything has the "object" in the beginning of it's prototype chain. Is this correct?
Ans: No, there are also primitive types as you said in question 2.
2\ But what about the primitive types (string, number, boolean, null, undefined)? Are they objects? I can call "aaa".length for example. How does that work?
Ans: No, they are primitive types, not objects. When you call "aaa".length
, JavaScript will automatically wrap the string primitive to String object and call the method or perform the property lookup.
3\ Functions are objects implementing [[Call]] according to this. What does that mean? (I'm thinking it's something about fun.call(this, arg1), but help me understand this.
Ans:Every function in JavaScript is actually a Function object.
4\ typeof "aaa" === "string" and typeof String("aaa") === "string". This seems quite expectable, but what does String("aaa") return? I guess it parses the input somehow and returns a string primitive from it. Is this correct?
Ans: String("aaa")
returns a primitive string.
5\ typeof new String("aaa") === "object" What? Please explain it's prototype chain to me. Where and on which prototype do I have the "aaa" primitive string value on this? How does it differ from typeof String("aaa")?
Ans: new String("aaa")
returns a String object.
本文标签:
版权声明:本文标题:javascript - typeof new String("aaa") === "object"? Everything is an object, but there are p 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743617620a2511002.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论