| 1234567891011121314151617181920212223242526272829303132333435 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- </head>
- <body>
- <script>
- var a = 1;
- var b = 2;
- // 加法
- console.log(a+b);
- // 由于计算机计算精度问题 0.1 + 0.2 不等于0.3
- console.log(0.1+0.2);
- // 减法
- console.log(2-1);
- // 乘法
- console.log(2*2);
- // 除法
- console.log(4/2);
- // 取余
- console.log(5%2);
- // 括号
- console.log((2+1)*2);
-
-
-
-
-
-
- </script>
- </body>
- </html>
|