How to use this key word to retrieve the functions property.
myfunction = () =>{
console.log(this.age);//undefied expecting 30
}
myfunction.age = 30;
myfunction();
In the above, this refer the window. how can we bind the this value to myfunction?