Advertisement
shopnilSS

Bug of This

Sep 19th, 2021
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const name = "bye"
  2. var student = {
  3.     name: "shopnil",
  4.     age : {
  5.         name: "iftekhar",
  6.         intro :function(){
  7.              this.name = "hello"
  8.             function funcTwo () {
  9.                 // this.name = "func"
  10.                 function funcThree () {
  11.                     function funcFour () {
  12.                          function func()  {
  13.                             console.log(`${this.name}`);
  14.                         }
  15.                         return func
  16.                     }
  17.                     return funcFour
  18.                 }
  19.                 return funcThree
  20.             }
  21.             return funcTwo;
  22.            
  23.         }
  24.     }
  25. }
  26. student.age.intro()()()()()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement