Rayhan (chaosm26)

Race #6

View Pit Stop page for race #6 by chaosm26Ghost race

View profile for Rayhan (chaosm26)

Official speed 30.45 wpm (118.62 seconds elapsed during race)
Race Start June 29, 2023 7:21:49pm UTC
Race Finish June 29, 2023 7:23:48pm UTC
Outcome Win (1 of 3)
Accuracy 93.0%
Points 23.35
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.'; } }