function myfunction(){
  return function(a){
    console.log(a)
  }
}
let b=myfunction()
b(2) 
by