OCM (ocm_)

Race #2

View Pit Stop page for race #2 by ocm_Ghost race

View profile for OCM (ocm_)

Official speed 25.61 wpm (141.04 seconds elapsed during race)
Race Start October 25, 2023 5:51:33pm UTC
Race Finish October 25, 2023 5:53:54pm UTC
Outcome Win (1 of 2)
Accuracy 94.0%
Points 19.63
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.'; } }