Pages

fonction en argument


function unless(test, then) {
  if (!test) then();

}

function repeat(times, fn) {
  for (let i = 0; i < times; i++) fn(i);
}

repeat(100, function(n) {
  unless(n % 2, function() {
    console.log(` ${n} est un nombre pair ! `);
  });
});