Raj (king_vegeta)

Race #4

View Pit Stop page for race #4 by king_vegetaGhost race

View profile for Raj (king_vegeta)

Official speed 39.24 wpm (92.05 seconds elapsed during race)
Race Start September 6, 2023 2:03:57pm UTC
Race Finish September 6, 2023 2:05:29pm UTC
Outcome No win (2 of 3)
Accuracy 92.0%
Points 30.08
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.'; } }