クラスを作成し、SONG()
多くのプロパティを定義する場合、渡された引数を使用してそのプロパティを取得するメソッドを作成するにはどうすればよいですか?
function SONG(i) {
/* properties */
this.title = results.title[i];
this.artist = results.artist[i];
this.album = results.album[i];
this.info = results.info[i];
/* methods */
this.getstuff = function(stuff){
console.log(this.stuff); // doesn't work
}
}
var song1 = new SONG(1);
song1.getstuff(title);
// how can I have this dynamically 'get' the property passed through as an argument?
どんな助けやアドバイスも大歓迎です!