When math.nthRoot is called from Math.js version 2.3.0, MSIE 11 throws TypeError: Object doesn't support property or method 'isFinite'. This can be fixed easily with a simple polyfill from MDN (public domain):
Number.isFinite = Number.isFinite || function (value) {
"use strict";
return typeof value === "number" && isFinite(value);
};
When
math.nthRootis called from Math.js version 2.3.0, MSIE 11 throws TypeError: Object doesn't support property or method 'isFinite'. This can be fixed easily with a simple polyfill from MDN (public domain):