Advertisement
Guest User

Untitled

a guest
Sep 30th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. function tilfeldigHilsen() {
  2. var tilfeldig = Math.floor((Math.random() *3) + 1);
  3.  
  4. if (tilfeldig === 1) {
  5. console.log("Hei");
  6. } else if (tilfeldig === 2) {
  7. console.log("Hallo");
  8. } else if (tilfeldig === 3) {
  9. console.log("God dag");
  10. }
  11. }
  12.  
  13. tilfeldigHilsen();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement