Race Result Details |
Racer | i_type_fast_with_good_posture (its_over_i_have_da_high_ground) |
Race Number | 8 |
Date | Fri, 16 Apr 2021 3:36:37 |
Universe | code |
Speed |
48 WPM
![]() |
Accuracy | 95.6% |
Rank | 1st place (out of 3) |
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.';
}
}
— (other)
by http://www.javascriptbook.com
(see stats)
|