police (styrofoam)

Race #174

View Pit Stop page for race #174 by styrofoamGhost race

View profile for police (styrofoam)

Official speed 56.02 wpm (77.54 seconds elapsed during race)
Race Start January 27, 2019 11:42:07pm UTC
Race Finish January 27, 2019 11:43:25pm UTC
Outcome No win (3 of 5)
Opponents 1. sidd_ (101.17 wpm)
2. delirious (69.16 wpm)
Accuracy 94.0%
Points 45.75
Text #10012 (Length: 372 characters)

var $form, width, height, area; $form = $('#calculator'); $('#calculator').on('submit', function(e) { e.preventDefault(); console.log('Clicked submit...'); width = $('#width').val(); height = $('#height').val(); area = (width * height); if (area < 100) { debugger; // A breakpoint is set if the developer tools are open } $form.append('

' + area + '

'); });