Tagged Questions
0
votes
4answers
654 views
Javascript: how to override public method in some class?
I have such JS class that have to be tested:
SomeClass = function {
// some stuff that uses initRequest
this.initRequest = function() {
if (window.XMLHttpRequest) {
...