Mich (michdaevinci)

Race #3

View Pit Stop page for race #3 by michdaevinciGhost race

View profile for Mich (michdaevinci)

Official speed 38.67 wpm (93.41 seconds elapsed during race)
Race Start April 5, 2021 9:37:06am UTC
Race Finish April 5, 2021 9:38:40am UTC
Outcome No win (3 of 3)
Accuracy 94.0%
Points 29.65
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.'; } }