Heager (heager)

Race #13

View Pit Stop page for race #13 by heagerGhost race

View profile for Heager (heager)

Official speed 41.12 wpm (87.84 seconds elapsed during race)
Race Start February 9, 2023 11:25:32am UTC
Race Finish February 9, 2023 11:27:00am UTC
Outcome No win (3 of 3)
Accuracy 98.0%
Points 31.53
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.'; } }