Getting object type by constructor name

suggest change

When one with typeof operator one gets type object it falls into somewhat wast category…

In practice you might need to narrow it down to what sort of ‘object’ it actually is and one way to do it is to use object constructor name to get what flavour of object it actually is: Object.prototype.toString.call(yourObject)

1. String

Object.prototype.toString.call("String")

“[object String]”

2. Number

Object.prototype.toString.call(42)

“[object Number]”

3. Bool

Object.prototype.toString.call(true)

“[object Boolean]”

4. Object

Object.prototype.toString.call(Object()) or

Object.prototype.toString.call({})

“[object Object]”

5. Function

Object.prototype.toString.call(function(){})

“[object Function]”

6. Date

Object.prototype.toString.call(new Date(2015,10,21))

“[object Date]”

7. Regex

Object.prototype.toString.call(new RegExp()) or

Object.prototype.toString.call(/foo/);

“[object RegExp]”

8. Array

Object.prototype.toString.call([]);

“[object Array]”

9. Null

Object.prototype.toString.call(null);

“[object Null]”

10. Undefined

Object.prototype.toString.call(undefined);

“[object Undefined]”

11. Error

Object.prototype.toString.call(Error());

“[object Error]”

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:


Data types in JavaScript:
* typeof
* Getting object type by constructor name

Table Of Contents
7 Data types in JavaScript
11 Arrays
12 Objects
14 Classes
16 Map
17 Set
24 Loops
27 Date
29 Scope
30 AJAX
35 Cookies
41 JSON
44 Fetch
45 Modules
46 Screen
64 Console
68 Symbols
73 Modals
76 Events
86 Proxy
89 WeakMap
90 WeakSet
102 Tilde