Record your races with a typeracer account:
Create Your Account- Save your race history and scores.
- Customize your profile and racecar.
- It’s free, why not?
Race Result Details |
Racer | (sidd_) |
Race Number | 64 |
Date | Sun, 27 Jan 2019 23:24:01 +0000 |
Universe | code |
Speed |
134 WPM
![]() |
Accuracy | 99.6% |
Rank | 1st place (out of 5) |
Opponents | delirious (2nd place) hellothen (3rd place) poem (5th place) styrofoam (4th 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
|