Ivankooo1

dom Order The Names

Sep 29th, 2020
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. function solve(){
  2. let input = document.querySelector('input');
  3. let list = document.querySelectorAll('li');
  4.  
  5. document.querySelector("button").addEventListener('click',regUser);
  6.  
  7. function regUser(){
  8. if(input.value === ''){
  9. return;
  10. }
  11.  
  12. const name = input.value[0].toUpperCase() + input.value.slice(1).toLowerCase();
  13. const position = name.charCodeAt(0) - 65;
  14. const people = list[position].textContent.split(', ').filter(Boolean);
  15.  
  16. people.push(name);
  17. list[position].textContent = people.join(', ');
  18. input.value = '';
  19. }
  20.  
  21. }
  22.  
  23.  
Advertisement
Add Comment
Please, Sign In to add comment