我< 1300
在列表中有大约数组。未来阵列数量有望增长
这就是我列出它们的方式:
var listofarrays{
listone:['string element', 'another string element'],
listtwo:['string element', 'another string element'],
listhree:['string element', 'another string element'],
listfour:['string element', 'another string element']
// ... and so on ... the lists over contain a lot of arrays.
//I figured it was best to not copy/paste it all.
};
我的问题是:
- 添加更多数组会有什么问题吗?
- 如何使用最少的存储空间来保存所有这些数组?