Abdullah (bunajim)

Race #25

View Pit Stop page for race #25 by bunajimGhost race

View profile for Abdullah (bunajim)

Official speed 29.97 wpm (120.52 seconds elapsed during race)
Race Start October 29, 2021 1:57:24pm UTC
Race Finish October 29, 2021 1:59:24pm UTC
Outcome No win (3 of 3)
Accuracy 96.0%
Points 22.98
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.'; } }