SalmanMKC (hellothen)

Race #38

View Pit Stop page for race #38 by hellothenGhost race

View profile for SalmanMKC (hellothen)

Official speed 49.27 wpm (88.17 seconds elapsed during race)
Race Start January 28, 2019 6:16:04am UTC
Race Finish January 28, 2019 6:17:32am UTC
Outcome No win (3 of 3)
Accuracy 94.0%
Points 40.24
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 + '

'); });