Javascript Array create(o)

Description

Javascript Array create(o)


Array.prototype.create = function( o )
{
  return [].slice.call( o )
};



PreviousNext

Related