Mikhail (mayham92)

Race #773

View Pit Stop page for race #773 by mayham92Ghost race

View profile for Mikhail (mayham92)

Official speed 64.46 wpm (56.03 seconds elapsed during race)
Race Start April 3, 2022 3:28:58pm UTC
Race Finish April 3, 2022 3:29:54pm UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 49.42
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.'; } }