Advertisement
lorrenec

Untitled

Mar 4th, 2020
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.   const name = document.getElementById('name'); //entendido
  2.   const password = document.getElementById ('password') ; //ok
  3.   const form = document.getElementById('form'); //ok
  4.  
  5.   form.addEventListener ('submit' /* ok */, (e) => { /* que significa essa sintaxe de função? */
  6.     let messages []; //array
  7.     if (name.value == "" || name.value == null) { //if que checa se é vazio ou nulo
  8.       messages.push ('Precisa do nome'); //insere aviso no array
  9.     }  
  10.   }) ;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement