(sidd_)

Race #51

View Pit Stop page for race #51 by sidd_Ghost race

View profile for (sidd_)

Official speed 107.41 wpm (40.44 seconds elapsed during race)
Race Start January 27, 2019 11:02:14pm UTC
Race Finish January 27, 2019 11:02:54pm UTC
Outcome Win (1 of 4)
Opponents 2. delirious (55.97 wpm)
Accuracy 99.0%
Points 87.72
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 + '

'); });