sdr4wkc48 (sdr4wkc48)

Race #12

View Pit Stop page for race #12 by sdr4wkc48Ghost race

View profile for sdr4wkc48 (sdr4wkc48)

Official speed 50.75 wpm (71.17 seconds elapsed during race)
Race Start January 18, 2023 4:38:38pm UTC
Race Finish January 18, 2023 4:39:50pm UTC
Outcome Win (1 of 3)
Accuracy 94.0%
Points 38.91
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.'; } }