Math





js/script.js
  • var val = null;
  •  
  • function funMake() {
  •  // E
  •  val = Math.E;
  •  document.write(val + '<br />');
  •   
  •  // PI
  •  val = Math.PI;
  •  document.write(val + '<br />');
  •   
  •  // SQRT1_2
  •  val = Math.SQRT1_2;
  •  document.write(val + '<br />');
  •   
  •  // SQRT2
  •  val = Math.SQRT2;
  •  document.write(val + '<br />');
  •   
  •  // abs()
  •  val = Math.abs(-35);
  •  document.write(val + '<br />');
  •   
  •  // ceil()
  •  val = Math.ceil(2.745);
  •  document.write(val + '<br />');
  •   
  •  // floor()
  •  val = Math.floor(2.745);
  •  document.write(val + '<br />');
  •   
  •  // max()
  •  val = Math.max(2.745, 0.2802, 7.47);
  •  document.write(val + '<br />');
  •   
  •  // min()
  •  val = Math.min(2.745, 0.2802, 7.47);
  •  document.write(val + '<br />');
  •   
  •  // pow()
  •  val = Math.pow(2, 3);
  •  document.write(val + '<br />');
  •   
  •  // round()
  •  val = Math.round(7.45);
  •  document.write(val + '<br />');
  •   
  •  // random()
  •  //from 0 before 1
  •  val = Math.random();
  •  document.write(val + '<br />');
  •  //from 0 before 10
  •  val = Math.round(Math.random() * 10);
  •  document.write(val + '<br />');
  • }
  • var val = null;
  •  
  • function funMake() {
  •  // E
  •  val = Math.E;
  •  document.write(val + '<br />');
  •   
  •  // PI
  •  val = Math.PI;
  •  document.write(val + '<br />');
  •   
  •  // SQRT1_2
  •  val = Math.SQRT1_2;
  •  document.write(val + '<br />');
  •   
  •  // SQRT2
  •  val = Math.SQRT2;
  •  document.write(val + '<br />');
  •   
  •  // abs()
  •  val = Math.abs(-35);
  •  document.write(val + '<br />');
  •   
  •  // ceil()
  •  val = Math.ceil(2.745);
  •  document.write(val + '<br />');
  •   
  •  // floor()
  •  val = Math.floor(2.745);
  •  document.write(val + '<br />');
  •   
  •  // max()
  •  val = Math.max(2.745, 0.2802, 7.47);
  •  document.write(val + '<br />');
  •   
  •  // min()
  •  val = Math.min(2.745, 0.2802, 7.47);
  •  document.write(val + '<br />');
  •   
  •  // pow()
  •  val = Math.pow(2, 3);
  •  document.write(val + '<br />');
  •   
  •  // round()
  •  val = Math.round(7.45);
  •  document.write(val + '<br />');
  •   
  •  // random()
  •  //from 0 before 1
  •  val = Math.random();
  •  document.write(val + '<br />');
  •  //from 0 before 10
  •  val = Math.round(Math.random() * 10);
  •  document.write(val + '<br />');
  • }


index.html
  • <!DOCTYPE html>
  • <html>
  • <head>
  •  <meta charset="utf-8" />
  •  <title>New Page</title>
  •  <script src="js/script.js"></script>
  • </head>
  • <body>
  • <script>
  •  funMake();
  • </script>
  • </body>
  • </html>
  • <!DOCTYPE html>
  • <html>
  • <head>
  •  <meta charset="utf-8" />
  •  <title>New Page</title>
  •  <script src="js/script.js"></script>
  • </head>
  • <body>
  • <script>
  •  funMake();
  • </script>
  • </body>
  • </html>