ES6: Руководство по доступным методам в JavaScript

  1. Методы массива:

    • Array.prototype.map()
    • Array.prototype.filter()
    • Array.prototype.reduce()
    • Array.prototype.find()
    • Array.prototype.findIndex()
    • Array.prototype.forEach()
    • Array.prototype.some()
    • Array.prototype.every()
    • Array.prototype.includes()
  2. Строковые методы:

    • String.prototype.startsWith()
    • String.prototype.endsWith()
    • String.prototype.includes()
    • String.prototype.repeat()
    • String.prototype.trim()
    • String.prototype.split()
    • String.prototype.substr()
    • String.prototype.toLowerCase()
    • String.prototype.toUpperCase()
  3. Методы объекта:

    • Object.keys()
    • Object.values()
    • Object.entries()
    • Object.assign()
    • Object.freeze()
    • Object.seal()
    • Object.getOwnPropertyNames()
  4. Другие методы:

    • Promise.prototype.then()
    • Promise.prototype.catch()
    • Set.prototype.add()
    • Set.prototype.delete()
    • Map.prototype.set()
    • Map.prototype.get()
    • Math.max()
    • Math.min()