Adsd (kol123313)

Race #14

View Pit Stop page for race #14 by kol123313Ghost race

View profile for Adsd (kol123313)

Official speed 49.24 wpm (73.35 seconds elapsed during race)
Race Start May 4, 2021 6:32:43pm UTC
Race Finish May 4, 2021 6:33:56pm UTC
Outcome No win (3 of 3)
Accuracy 94.0%
Points 37.75
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.'; } }