timoxley / functional-javascript-workshop

A functional javascript workshop. No libraries required (i.e. no underscore), just ES5.
2.06k stars 441 forks source link

[Partial application without Bind] Why a few of test cases are passed, some are failed #211

Open hungdao-testing opened 1 year ago

hungdao-testing commented 1 year ago

Hi all,

Would you guys have a look at my code to help me figure out what wrong in my code that causes some cases are passed , some are failed

var slice = Array.prototype.slice;
function logger(namespace) {
  // SOLUTION GOES HERE

  let arr = slice.call(arguments);
  return function (...params) {
    arr.push.apply(arr, params);
    console.log.apply(null, arr);
  };
}

Screenshot image