Vilson (vilsonkh)

Race #32

View Pit Stop page for race #32 by vilsonkhGhost race

View profile for Vilson (vilsonkh)

Official speed 46.43 wpm (77.79 seconds elapsed during race)
Race Start August 23, 2023 9:05:38am UTC
Race Finish August 23, 2023 9:06:56am UTC
Outcome Win (1 of 3)
Opponents 3. whitecap (41.95 wpm)
Accuracy 98.0%
Points 35.59
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.'; } }