logoZlata Son


Lesson 2

"JavaScript Functions"
    Home work Lesson 2:
  • 1. Створити об'єкт. В цьому об'єкті написати власні реалізації наступних методів масиву: pop(), push(), slice(), join(), reverse()
  • 2. Оголосити масив для тестування методів ['a', 'b', 'c', 4, 5, 6]
  • 3. Продемонструвати роботу кожного методу двома способами: викликаючи метод цього об'єкту, в контексті масиву & перевизначивши метод прототипу масиву
  • 4. Всі результати мають виводиться в консоль
  • 5. Зробіть, щоб в чисел з'явився метод sum(), який отримує інше число і на виході дає їх суму, наприклад x.sum(y) === x + y

if you want to see the result in the console click "Ctrl+Shift+J" or F12


  • The pop() method removes the last element from an array.

  • The push() method adds a new element to an array (at the end).

  • The slice() method slices out a piece of an array into a new array.

  • The join() method joins array elements into a string.

  • The reverse() method reverses the elements in an array.

  • The sum() method.