Race Result Details |
Racer | permil (permil) |
Race Number | 103 |
Date | Mon, 25 Feb 2019 15:10:03 |
Universe | code |
Speed |
109 WPM
![]() |
Accuracy | 99.6% |
Rank | 1st place (out of 2) |
Opponents | tanon710s (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
|