index.html 583 B

123456789101112131415161718192021222324
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. </head>
  9. <body>
  10. <script src="./src/apply.js"></script>
  11. <script>
  12. function add (a,b){
  13. console.log(this)
  14. return a + b + this.c
  15. }
  16. let obj = {
  17. c: 5
  18. }
  19. window.c = 6
  20. console.log(apply(add,obj,[1,2]))
  21. console.log(apply(add,null,[1,2]))
  22. </script>
  23. </body>
  24. </html>