| Race Result Details | 
| Racer | Kind Hat (kind_hat1628) | 
| Race Number | 3 | 
| Date | Fri, 26 Jul 2024 2:21:42 | 
| Universe | code | 
| Speed | 72 WPM  Try to beat? | 
| Accuracy | 97.1% | 
| Rank | 1st place (out of 9) | 
| Opponents | adrianop (7th place) california_heat_wave (3rd place) casey_2000 (2nd place) diudiudiudiu (4th place) erickwan0330 (9th place) wyshcheung (5th place) | 
Text typed:
| 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.';
  }
}— (other)
          by http://www.javascriptbook.com
          (see stats) |