Returns a normalized lowercase tag for the runtime category of value.
value
Primitive values are classified with typeof. Objects and built-in platform values are classified with Object.prototype.toString.
typeof
Object.prototype.toString
The value to classify.
A normalized runtime tag such as "string", "record", "url", or "unknown".
"string"
"record"
"url"
"unknown"
Returns a normalized lowercase tag for the runtime category of
value.Primitive values are classified with
typeof. Objects and built-in platform values are classified withObject.prototype.toString.