I'm debugging a website in Chrome's developer tools (F12) and the website's programmers have reimplemented console.log
for their own purposes. In their code they've basically done this:
`console.log = function () { new code that has nothing to do with logging to console }`
When I call console.log
it doesn't log to console.
My question is - how do I call the original console.log
that the browser implements and not the overridden version?
I don't have access to website's code or its programmers.