Advertisement
vinissh

Untitled

Sep 22nd, 2019
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. IF TERNÀRIO
  2.  
  3.  
  4. var mensagem = "";
  5.  
  6. mensagem = nome ? "Olá ": nome : "Nome não informado";
  7. console.log(mensagem);
  8.  
  9. var nome="";
  10. var idade="";
  11.  
  12. mensagem(nome && idade)? "olá" + ", voce tem" + idade + "anos ."
  13. : (!nome && !idade)? "Nome e idade não informados "
  14. : (!idade)? "Idade não informada"
  15. : (!idade)? "Idade não informada"
  16. :"Nome não informado";
  17.  
  18. console.log(mensagem);
  19.  
  20.  
  21.  
  22. -----
  23. NAMESPACES
  24. var meuWebApp = {
  25. nome: "Vinicius",
  26. ver_nome: function() {
  27. console.log(meuWebapp.nome);
  28. }
  29. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement