Callbacks

function Display(y) {

  console.log(y);

}

function SetX(myCallback) {

  let x = 11;

  myCallback(x);

}

SetX(Display);