document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. Enter the array to be sorted :
  2. 11, 7, 12, 14, 19, 1, 6, 18, 8, 20
  3. The List after applying Bubble Sort is :
  4. [1, 6, 7, 8, 11, 12, 14, 18, 19, 20]
  5.  
  6. Process finished with exit code 0
');