show/hide this revision's text 3 deleted 17 characters in body

In an

Jason Bunting's answer they then deleted, someone gave me enough of a clue to find what I needed:

<<Object instance>>.constructor.name

So, for example, in the following piece of code:

function MyObject() {}
var myInstance = new MyObject();

myInstance.constructor.name would return "MyObject".

show/hide this revision's text 2 Added example to clarify

Someone

In an answer they then deleted, someone gave me enough of a clue to find what I needed:

<<Object instance>>.constructor.name

So, for example, in the following piece of code:

function MyObject() {}
var myInstance = new MyObject();

myInstance.constructor.name would return "MyObject".

show/hide this revision's text 1

Someone gave me enough of a clue to find what I needed:

<<Object instance>>.constructor.name