(sidd_)

Race #78

View Pit Stop page for race #78 by sidd_Ghost race

View profile for (sidd_)

Official speed 101.17 wpm (42.94 seconds elapsed during race)
Race Start January 27, 2019 11:42:07pm UTC
Race Finish January 27, 2019 11:42:50pm UTC
Outcome Win (1 of 5)
Opponents 2. delirious (69.16 wpm)
3. styrofoam (56.02 wpm)
Accuracy 98.0%
Points 82.63
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 + '

'); });