Petter (ph140)

Race #4

View Pit Stop page for race #4 by ph140Ghost race

View profile for Petter (ph140)

Official speed 55.08 wpm (65.58 seconds elapsed during race)
Race Start February 17, 2024 2:47:46pm UTC
Race Finish February 17, 2024 2:48:52pm UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 42.23
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.'; } }