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>
- <script>
- function foo(){
- console.log("hello");
- }
- Function.prototype.lovecoding = function(){
- console.log("lovecoding");
- }
- foo.lovecoding();
- // prototype 原型
- // console.log(Array.prototype)
- </script>
- </body>
- </html>
|