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

How do call() and apply() handle the arguments object differently?
function logArgs() {
  console.log(arguments);
}

logArgs.call(null, 1, 2, 3);
logArgs.apply(null, [1, 2, 3]);
Next Question (15/20)