Here it is described how to check if innerHTML
property is configurable and enumerable using Firebug/FF Web Console.
How can I check the same for charCodeAt
function? Object.getOwnPropertyDescriptor(HTMLElement.prototype,"charCodeAt")
return undefined
.
how to check if charCodeAt() is configurable
192 Views Asked by tic At
2
The
.charCodeAt()
method belongs to Strings, not toHTMLElement
: