Quote:
Originally Posted by DaveyErwin
Quote that spec please.
Also the specs are not implimintation.
It is always an object .
Explain the process of conversion.
|
all implementations follow the spec (more or less), that's why they are interoperable.
Code:
// ALL true:
typeof "wrong" === "string";
typeof 7734 === "number";
typeof "wrong".bold() === "string";
check yourself before you wreck yourself.