Advertisement
svetlio_top

Order The Names

Dec 30th, 2019
465
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function solve() {
  2.  
  3.     let addbut = document.getElementsByTagName('button')[0];
  4.     let input = document.querySelector("input[type=text]");
  5.     let fLetter='';
  6.    
  7.    
  8.        addbut.addEventListener('click', function(){
  9.      
  10.         let InputString = input.value;
  11.        
  12.         fLetter = InputString[0].toUpperCase();
  13.         let index = fLetter.charCodeAt(0) - 65;  
  14.         //console.log(index);
  15.         let Allol = document.querySelectorAll("ol li");  
  16.         if (Allol[index].textContent === ''){
  17.            Allol[index].textContent += InputString.charAt(0).toUpperCase() + InputString.slice(1);
  18.         }else{
  19.            Allol[index].textContent += ", "+ InputString.charAt(0).toUpperCase() + InputString.slice(1);  
  20.         }
  21.         input.value = '';
  22.        
  23.         });
  24.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement