codecademy.comでJavaScript/jQueryのレッスンを受けています。通常、レッスンは答えやヒントを提供しますが、これについては何の助けにもならず、私は指示に少し混乱しています。
関数makeGamePlayerが3つのキーを持つオブジェクトを返すようにすることを示しています。
//First, the object creator
function makeGamePlayer(name,totalScore,gamesPlayed) {
//should return an object with three keys:
// name
// totalScore
// gamesPlayed
}
私はこれを行うべきかどうかわかりません
//First, the object creator
function makeGamePlayer(name,totalScore,gamesPlayed) {
//should return an object with three keys:
// name
// totalScore
// gamesPlayed
this.name = name;
this.totalScore = totalScore;
this.gamesPlayed = gamesPlayed;
}
またはこのようなもの
//First, the object creator
function makeGamePlayer(name,totalScore,gamesPlayed) {
//should return an object with three keys:
// name
// totalScore
// gamesPlayed
var obj = {
this.name = name;
this.totalScore = totalScore;
this.gamesPlayed = gamesPlayed;
}
}
オブジェクトの作成後に、オブジェクトのプロパティを変更できる必要があります。