| 12345678910111213141516171819202122232425 |
- <!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>
- <!--
- function 名字(形参) {
- 代码块
- return 反出内容
- }
- 名字(实参)
- -->
- <script>
- function fn1(x) {
- console.log("这是我的第一个函数"+x)
- return 1 + x;
- }
- fn1(3);
- console.log(fn1(4));
- </script>
- </body>
- </html>
|