View Pit Stop page for race #35 by nonquit_accuracy — Ghost race
View profile for Nerd Typist (nonquit_accuracy)
Official speed | 50.84 wpm (71.05 seconds elapsed during race) |
---|---|
Race Start | August 6, 2022 8:05:33pm UTC |
Race Finish | August 6, 2022 8:06:44pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 99.0% |
Points | 38.97 |
Text | #10015 (Length: 301 characters) 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.'; } } |