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

What does this code demonstrate about call()?
const obj1 = { value: 'Original' };
const obj2 = { value: 'New' };

function getValue() {
  return this.value;
}

console.log(getValue.call(obj1));
console.log(getValue.call(obj2));
Next Question (6/20)