Salfi (salfi_sabit)

Race #2

View Pit Stop page for race #2 by salfi_sabitGhost race

View profile for Salfi (salfi_sabit)

Official speed 38.26 wpm (94.41 seconds elapsed during race)
Race Start May 3, 2021 9:52:39am UTC
Race Finish May 3, 2021 9:54:14am UTC
Outcome Win (1 of 3)
Accuracy 94.0%
Points 29.33
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.'; } }