Advertisement
SirSpamModz

Untitled

Jul 16th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.55 KB | None | 0 0
  1. ~~~~~~~~~~~~~~~~~~~~<Number one(types)>~~~~~~~~~~~~~~~~~~~~<
  2. var myString = 'String';
  3. var myNumber = 6;
  4. var myBoolean = true;
  5.  
  6.  
  7. // Do not edit the code under this line
  8. console.log("Name: " + myString);
  9. console.log("Lucky Number: " + myNumber);
  10. console.log("Good joke? " + myBoolean);
  11.  
  12.  
  13.  
  14.  
  15.  
  16. ~~~~~~~~~~~~~~~~~~~~<Number two(Console)>~~~~~~~~~~~~~~~~~~~~
  17.  
  18. console.log("favourite pizza here.", "more favourite pizza.\n");
  19.  
  20.  
  21.  
  22.  
  23.  
  24. ~~~~~~~~~~~~~~~~~~~~<Number three(math operators)>~~~~~~~~~~~~~~~~~~~~
  25.  
  26. console.log(15 + 3.5);
  27. console.log(2017 - 1969);
  28. var stepThree = 65 / 240;
  29. console.log(stepThree);
  30. console.log(stepThree * 100);
  31.  
  32.  
  33.  
  34.  
  35. ~~~~~~~~~~~~~~~~~~~~<Number three(math operators 2)>~~~~~~~~~~~~~~~~~~~~
  36.  
  37. console.log(365 / 27);
  38. console.log(365 % 27);
  39.  
  40.  
  41.  
  42.  
  43. ~~~~~~~~~~~~~~~~~~~~<Pseudo-random numbers>~~~~~~~~~~~~~~~~~~~~
  44.  
  45. console.log(Math.random() * 100);
  46. console.log(Math.floor(Math.random() * 100));
  47.  
  48.  
  49.  
  50.  
  51. ~~~~~~~~~~~~~~~~~~~~<Comments>~~~~~~~~~~~~~~~~~~~~
  52.  
  53. //Opening line
  54. console.log('It was love at first sight.');
  55.  
  56. /*console.log('The first time Yossarian saw the chaplain he fell madly in love with him.');
  57. console.log('Yossarian was in the hospital with a pain in his liver that fell just short of being jaundice.');
  58. console.log('The doctors were puzzled by the fact that it wasn\'t quite jaundice.');
  59. console.log('If it became jaundice they could treat it.');
  60. console.log('If it didn\'t become jaundice and went away they could discharge him.');
  61. console.log('But this just being short of jaundice all the time confused them.');*/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement