Javascript Array front()

Description

Javascript Array front()


Array.prototype.front = function () {
    return this[0];
};



PreviousNext

Related