Кто знает решение?

/**
* Write a Person function using a module pattern.
* The person should define name property and return
* setName and getName functions. The setName method
* should set the user name and the getName method should
* return the user name.
*/

const Person = function () {}; // modify this function

module.exports = { Person };
  • Вопрос задан
  • 157 просмотров
Решения вопроса 1
lina666
@lina666
Изучаю веб ЯП.
Хм, если я правильно все понял то задача простейшая.
const Person = function (startName) {
  let name = ''

  const getName = function () {
    return name
  }

  const setName = function (val) {
    name = val
  }

  return {
    setName, getName
  }
}; // modify this function

const personModule = Person()
personModule.setName('Kotaro')
console.log(personModule.getName())
Ответ написан
Пригласить эксперта
Ваш ответ на вопрос

Войдите, чтобы написать ответ

Похожие вопросы
21 нояб. 2024, в 23:30
300000 руб./за проект
21 нояб. 2024, в 22:21
3000 руб./в час
21 нояб. 2024, в 21:42
100000 руб./за проект