¯\_(ツ)_/¯ (caliskimmer)

Race #11

View Pit Stop page for race #11 by caliskimmerGhost race

View profile for ¯\_(ツ)_/¯ (caliskimmer)

Official speed 80.30 wpm (44.98 seconds elapsed during race)
Race Start April 9, 2023 5:52:12pm UTC
Race Finish April 9, 2023 5:52:57pm UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 61.56
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.'; } }