bind(), call(), and apply()

What concept does this code demonstrate?
function multiply(a, b) {
  return a * b;
}

const multiplyByTwo = multiply.bind(null, 2);
console.log(multiplyByTwo(4));
Next Question (3/20)