Skip Navigation

You're viewing a single thread.

29 comments
  • Today I found out that this is valid JS:

    const someString = "test string";
    console.log(someString.toString());
    
    • I dint know many OO languages that don't have a useless toString on string types. It mostly seems to be a result of using a generic string-able type that's implemented to add toString() in a standardised way.

      Calling toString on a string is practically a no-op anyway.

    • Everything that's an Object is going to either inherit Object.prototype.toString() (mdn) or provide its own implementation. Like I said in another comment, even functions have a toString() because they're also objects.

      A String is an Object, so it's going to have a toString() method. It doesn't inherit Object's implementation, but provides one that's sort of a no-op / identity function but not quite.

      So, the thing is that when you say const someString = "test string", you're not actually creating a new String object instance and assigning it to someString, you're creating a string (lowercase s!) primitive and assigning it to someString:

      Compare this with creating a new String("bla"):

      In Javascript, primitives don't actually have any properties or methods, so when you call someString.toString() (or call any other method or access any property on someString), what happens is that someString is coerced into a String instance, and then toString() is called on that. Essentially it's like going new String(someString).toString().

      Now, what String.prototype.toString() (mdn) does is it returns the underlying string primitive and not the String instance itself:

      Why? Fuckin beats me, I honestly can't remember what the point of returning the primitive instead of the String instance is because I haven't been elbow-deep in Javascript in years, but regardless this is what String's toString() does. Probably has something to do with coercion logic.

29 comments