purplefr|ction (tesla_diesel)

Race #2

View Pit Stop page for race #2 by tesla_dieselGhost race

View profile for purplefr|ction (tesla_diesel)

Official speed 84.07 wpm (42.96 seconds elapsed during race)
Race Start April 20, 2021 3:05:14am UTC
Race Finish April 20, 2021 3:05:57am UTC
Outcome No win (1 of 1)
Accuracy 98.0%
Points 64.45
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.'; } }