SalmanMKC (hellothen)

Race #161

View Pit Stop page for race #161 by hellothenGhost race

View profile for SalmanMKC (hellothen)

Official speed 78.41 wpm (46.07 seconds elapsed during race)
Race Start August 24, 2021 9:04:47pm UTC
Race Finish August 24, 2021 9:05:33pm UTC
Outcome Win (1 of 2)
Accuracy 98.0%
Points 60.11
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.'; } }