Make a Person-freecodecamp算法题目

Posted ahswch

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Make a Person-freecodecamp算法题目相关的知识,希望对你有一定的参考价值。

Make a Person


1.要求

  • 用下面给定的方法构造一个对象:方法有 getFirstName(), getLastName(), getFullName(), setFirstName(first), setLastName(last), and setFullName(firstAndLast).
  • 所有有参数的方法只接受一个字符串参数.
  • 所有的方法只与实体对象交互.

2.思路

  • 根据相关链接介绍用题目给定的方法构造一个对象.构造对象

3.代码

var Person = function(firstAndLast) {
    var firstName=firstAndLast.split(' ')[0];
    var lastName=firstAndLast.split(' ')[1];
  this.getFirstName=function(){
    return firstName;
  };
  this.getLastName=function(){
    return lastName;
  };
  this.getFullName=function(){
    return firstName+' '+lastName;
  };
  this.setFirstName=function(first){
    firstName=first;
  };
  this.setLastName=function(last){
    lastName=last;
  };
  this.setFullName=function(firstAndLast){
    firstName=firstAndLast.split(' ')[0];
    lastName=firstAndLast.split(' ')[1];
  };
    return firstAndLast;
};

var bob = new Person('Bob Ross');
bob.getFullName();

4.相关链接

以上是关于Make a Person-freecodecamp算法题目的主要内容,如果未能解决你的问题,请参考以下文章

make的命令行选项

gcc和make的区别

关于make

./configure,make,make install的作用

./configure,make,make install的作用(转)

Configure,make,make install详解