Object.prototype.valueOf() method

前端 未结 2 1512
滥情空心
滥情空心 2021-01-26 00:32
Object.prototype.valueOf.call(\"abc\")
{ \'0\': \'a\'
, \'1\': \'b\'
, \'2\': \'c\'
}
Object.prototype.valueOf.call(new String(\"abc\"))
{ \'0\': \'a\'
, \'1\': \'b\'
,          


        
相关标签:
2条回答
  • 2021-01-26 01:14

    Perhaps I've missed what the actual question is. Here is what ECMA-262 says:

    15.2.4.4 Object.prototype.valueOf ( )

    When the valueOf method is called, the following steps are taken:

    1. Let O be the result of calling ToObject passing the this value as the argument.

    2. If O is the result of calling the Object constructor with a host object (15.2.2.1), then

      a. Return either O or another value such as the host object originally passed to the constructor. The specific result that is returned is implementation-defined.

    3. Return O.

    In the expression:

    Object.prototype.valueOf.call("abc")
    

    Object.prototype.valueOf is being called with a string primitive as this. So at step 1, it is converted using the internal ToObject method.

    If passed a value of Type String (which "abc" is) ToObject will return a String object.

    Step 2 is irrelevant since the object is not a host object (it's a native object).

    Step 3 returns the object created by toObject.

    So test it:

    var x = Object.prototype.valueOf.call("abc");
    
    alert(typeof x); // object
    

    typeof returns object because the resulting value is a String object (a nice quirk of the typeof operator). You can go further:

    typeof x.match; // function
    x.constructor;  // function String() {[native code]}
    alert(x); // abc
    

    All consistent with the returned value being (a reference to) a String object.

    0 讨论(0)
  • 2021-01-26 01:26

    Let's look at what valueOf (that's a link) does:

    Let O be the result of calling ToObject passing the this value as the argument.

    ToObject:

    String

    Create a new String object whose [[PrimitiveValue]] internal property is set to the value of the argument. See 15.5 for a description of String objects.

    In other words, it simply creates a new string object with the original value, i.e. new String('abc'). Now take a look at how that is displayed in your console, and you'll notice it's the same as the .valueOf.call result.

    Edit: This actually has more to do with what medium you use to view the answer. Chrome's and Firefox's dev tools display strings as their literal values (the string itself), but display string objects as if they were regular objects (by displaying their properties).

    A string is just an "array" of characters with some methods on them. So the representation {'0' : 'a', '1' : 'b', '2' : 'c'} means "a in the first position, b in the second, c in the third", which is the string you asked for.

    And as a final note, valueOf does not give [object ObjectName]. You may be referring to Object.prototype.toString

    0 讨论(0)
提交回复
热议问题