jQuery array creation handling
滿天的星座
滿天的星座 2017-05-19 10:46:30
0
2
459

How to create an array in the form of something like this

objectA{
    list:array(10),
    a:1,
    b:2
}
滿天的星座
滿天的星座

reply all(2)
左手右手慢动作
var b = new Array(10)
var a = {x:b,y:2,z:3};
console.log(a)
给我你的怀抱
var ObjectA = {
list: new Array(10),
a:1,b:2
}
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template