var head = function (array, num) {
  return array.slice(0, Math.abs(parseInt(num, 10)));
};
