10
0

17_原型.html 694 B

12345678910111213141516171819202122232425262728293031
  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. var arr = [];
  20. arr.push();
  21. Array.prototype.lovecoding = function(){
  22. console.log("lovecoding")
  23. }
  24. arr.lovecoding()
  25. console.log(Array.prototype)
  26. </script>
  27. </body>
  28. </html>