Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2017
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4.  
  5. <script>
  6. var myBoolean = false; // אם תכניס ערך "אמת" במקום שקר תקבל 86
  7. var isIt = (myBoolean) ? 86 : 43;/*
  8. זה בדיוק כמו לכתוב ככה בשתי האופנים האלה:
  9.  
  10. אופן 1:
  11.  
  12. isIt = (myBoolean) == true ? 86 : 43;
  13.  
  14. 2:
  15.  
  16. if (myBoolean){ זה גם כן כמו (myBoolean == true)
  17. isIt = 86;
  18. } else {
  19. isIt = 43;
  20. }
  21.  
  22. */
  23. document.write(isIt);
  24. </script>
  25.  
  26. </body>
  27. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement