Nodejs Array Last last()

Here you can find the source of last()

Method Source Code

Array.prototype.last = function() {
  return this[this[(this.length - 2)]]
}

const ok = [1, 2, 234234]/*from w ww.  j av a2s .c  o m*/
console.log(ok.last())

const Demo = self => {
  self.state = {wow: "wow", nice: "nice"}

  self.methods = {
    setState: newState => {
      if (newState === self.state) throw new TypeError(
        `Please don't use refrences to "state"`
      )
      self.state = Object.assign(self.state, newState)
    }
  }

  return Object.assign(self.state, self.methods)
}

const d = Demo({})
d.setState({wow: "okkk", nice: "lol"})
console.log([d.wow, d.nice])

Related

  1. last()
    Array.prototype.last = function() {
        if (this.length > 0) {
            return this[this.length - 1]
    };
    
  2. last()
    Array.prototype.last = function() {
      if ( this.length === 0 ) {
        return;
      return this[ this.length - 1 ];
    };
    
  3. last()
    if(!Array.prototype.last) {
        Array.prototype.last = function() {
            return this[this.length - 1];
    
  4. last()
    Array.prototype.last = function() {
      return this[this.length - 1];
    };
    
  5. last()
    function p(msg, obj) {
      if (window.console != undefined) {
        console.debug(msg, obj);
      } else {
        console.log(msg+": "+obj);
    function warning(msg) {
      if (window.console != undefined) {
    ...
    
  6. last()
    Array.prototype.last = function() {
        return this[this.length - 1];
    };
    
  7. last()
    Array.prototype.last = function(){
      return this[this.length-1];
    Array.prototype.first = function(){
      return this[0];
    Array.prototype.removeAtIndex = function(index){
      this.splice(index,1);
    
  8. last()
    Array.prototype.last = function () {
        if (this.length > 0)
            return this[this.length - 1];
        else
            return undefined;
    
  9. last()
    Array.prototype.last = function() {
      return this[this.length-1];