Guest User

Untitled

a guest
Feb 18th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. alert(
  2. x > 10 ?
  3. function(){
  4. alert("in then body");
  5. return "x was bigger than 10!";
  6. }() :
  7. function(){
  8. alert("in else body");
  9. return "x was not bigger than 10!";
  10. }());
Add Comment
Please, Sign In to add comment