17_原型.html 494 B

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. </head>
  8. <body>
  9. <script>
  10. function foo(){
  11. console.log("hello");
  12. }
  13. Function.prototype.lovecoding = function(){
  14. console.log("lovecoding");
  15. }
  16. foo.lovecoding();
  17. // prototype 原型
  18. // console.log(Array.prototype)
  19. </script>
  20. </body>
  21. </html>