Zaibo (s_train)

Race #1

View Pit Stop page for race #1 by s_trainGhost race

View profile for Zaibo (s_train)

Official speed 42.48 wpm (102.26 seconds elapsed during race)
Race Start November 29, 2018 4:05:37am UTC
Race Finish November 29, 2018 4:07:19am UTC
Outcome No win (2 of 2)
Opponents 1. chillee (61.75 wpm)
Accuracy 93.0%
Points 34.69
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 + '

'); });