“JavaScript GET / DRIDNIK Bieżą ścieżka” Kod odpowiedzi

Zdobądź JS

const obj = {
  log: ['a', 'b', 'c'],
  get latest() {     //get is used to return a value from your object
    if (this.log.length === 0) {
      return undefined;
    }
    return this.log[this.log.length - 1];
  }
};

console.log(obj.latest);
// expected output: "c"
CodeCat

metoda JavaScript Get ()

fruits.get("apples");    // Returns 500
naly moslih

Odpowiedzi podobne do “JavaScript GET / DRIDNIK Bieżą ścieżka”

Pytania podobne do “JavaScript GET / DRIDNIK Bieżą ścieżka”

Więcej pokrewnych odpowiedzi na “JavaScript GET / DRIDNIK Bieżą ścieżka” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu