Adam (iadam368)

Race #4

View Pit Stop page for race #4 by iadam368Ghost race

View profile for Adam (iadam368)

Official speed 44.62 wpm (80.95 seconds elapsed during race)
Race Start February 21, 2021 2:19:07am UTC
Race Finish February 21, 2021 2:20:28am UTC
Outcome No win (3 of 3)
Accuracy 95.0%
Points 34.21
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.'; } }