Advertisement
molik

Skrócony zapis instrukcji if

Oct 27th, 2017
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var firstName = "Katarzyna";
  2. var userName;
  3.  
  4. if(firstName) {
  5.     userName = firstName;
  6. } else {
  7.     userName = "Nieznajomy";
  8. }
  9. ------------------------------------
  10. userName = firstName ? firstName : "Nieznajomy";
  11.  
  12. console.log("Witaj, " + userName);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement