Advertisement
Guest User

Untitled

a guest
Dec 14th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. var input = document.querySelector("#input");
  2. var output = document.querySelector("#output");
  3. document.querySelector("#button").addEventListener("click",capitalize);
  4.  
  5. function capitalize(){
  6. var out="";
  7. var a = input.value ;
  8. console.log(a);
  9. for(var i=0;i<a.length;i++)
  10. out+= a[i].toUpperCase();
  11. output.value = out;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement