Advertisement
Guest User

Untitled

a guest
Apr 26th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. // Takes one argument, Displays the alert message
  2. function displayAlert(message){
  3. alert(message);
  4. }
  5. // Takes two argument. Displays the alert message if the second argument is true.
  6. function displayAlert(message, shouldDisplay){
  7. if(shouldDisplay){
  8. alert(message);
  9. }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement