Javascript 中的结构
2022-08-30 04:23:39
以前,当我需要存储许多相关变量时,我会创建一个类。
function Item(id, speaker, country) {
this.id = id;
this.speaker = speaker;
this.country = country;
}
var myItems = [new Item(1, 'john', 'au'), new Item(2, 'mary', 'us')];
但我想知道这是否是一种好的做法。有没有其他更好的方法来模拟JavaScript中的结构?