operatorarray-moroccotime
Version:
operatorarray-moroccotime
17 lines (16 loc) • 439 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports["default"] = void 0;
var Max = function Max(arr) {
if (arr.length !== 1 || arr[0].length !== 2) {
throw new Error("Input array must be of the form [[a, b]] where a and b are numbers.");
}
var num1 = arr[0][0];
var num2 = arr[0][1];
var result = Math.max(num1, num2);
return result;
};
var _default = Max;
exports["default"] = _default;