لآ اِلَهَ اِلّا اللّهُ (maghrib)

Race #2

View Pit Stop page for race #2 by maghribGhost race

View profile for لآ اِلَهَ اِلّا اللّهُ (maghrib)

Official speed 62.84 wpm (53.47 seconds elapsed during race)
Race Start November 20, 2020 11:48:14pm UTC
Race Finish November 20, 2020 11:49:08pm UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 48.18
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.'; } }