Race Result Details |
Racer | tanon (tanon710s) |
Race Number | 93 |
Date | Mon, 25 Feb 2019 15:14:52 |
Universe | code |
Speed |
98 WPM
![]() |
Accuracy | 97.2% |
Rank | 1st place (out of 2) |
Opponents | permil (2nd place) |
Text typed:
function calculateArea(width, height) {
try {
var area = width * height;
if (!isNaN(area)) {
return area;
} else {
throw new Error('calculateArea() received invalid number');
}
} catch(e) {
console.log(e.name + ' ' + e.message);
return 'We were unable to calculate the area.';
}
}
—
Throw
|