FCC高级编程篇之Make a Person

Make a Person

Fill in the object constructor with the following methods below:

getfirstname()
getLastName()
getFullName()
setFirstName(first)
setLastName(last)
setFullName(firstAndLast)

Run the tests to see the expected output for each method.
The methods that take an argument must accept only one argument and it has to be a string.
These methods must be the only available means of interacting with the object.

考察闭包

直接上代码好了

let Person = function(firstAndLast) {
  let firstName, lastName;

  this.getFirstName = () => firstName;

  this.getLastName = () => lastName;

  this.getFullName = () => firstName + ' ' + lastName;

  this.setFirstName = first => firstName = first;

  this.setLastName = last => lastName = last;

  this.setFullName = firstAndLast => {
    firstAndLast = firstAndLast.split(' ');
    firstName = firstAndLast[0];
    lastName = firstAndLast[1];
  };

  this.setFullName(firstAndLast);
};

这里要注意的是this的使用。上述代码中,只有6个方法使用了this

firstName, lastName不使用this是为了防止Person的实例直接访问。

要真正实现私有属性,一种方式是使用闭包。即使这样做会增加资源占用。

要想访问或设置firstName, lastName,必须使用给定的方法。

下面是运行结果图。

Make-a-Person.png
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • 一个人想要安静下来的话,去寺庙是最适合不过的了,走在幽静的小路上,听着鸟儿的叫声,以及念佛声。 用心对待生活,多爱...
    mangata鹿阅读 1,819评论 0 0
  • 故事并不长,但用心的去写了。这是我写的第一个故事,渴望分享。 还是学生,所以连载,缓更。大概一周一更或两更。 一 ...
    LJK_monogamy阅读 1,747评论 0 0
  • 相信每个人来美国都有自己的憧憬,或许是探亲,或许是第一次去美国旅游,还有很多很多的目的……但如果,您是第一次来美国...
    英日粤语口译Jack阅读 1,139评论 0 0

友情链接更多精彩内容