When I do new String("hello")
in my console I get the following result:
String {"hello", length: 5}
The first value in the String Object that was returned doesn't have a key.
Since objects are associative/hash arrays i.e. defined and created with keys and values how is the String constructor returning an object with a value without key?