I want to call this method named 'prototype' but I don't know how to call it.(last method) enter image description here
how should I call this method?
I tried .[[Prototype]] .Prototype .prototype and ...
I want to call this method named 'prototype' but I don't know how to call it.(last method) enter image description here
how should I call this method?
I tried .[[Prototype]] .Prototype .prototype and ...
You can access the Prototype property like so:
Object.getPrototypeOf(myObject)
Make sure myObject is defined before you call this.
See https://developer.mozilla.org/en-US/docs/Learn/JavaScript/Objects/Object_prototypes for more information.
If you are not expecting the Prototype property in this object, please describe what your code is doing and provide snippets related to the bug.