IE11 could not distinguish variable name vs class name.
For example, we have some code like
function Shape(){
function draw(){
}
}
Shape = new Shape();
Shape.draw();IE11 try to reference that as classShape instead of variable. Thus given no method or object found error message