Lines Matching defs:length
116 get length() { getter
120 set length(x) { setter
208 let res = Array.from({length : 3}, () => {}); property
213 let res = Array.from({length : 3}, () => ({})); property
218 let res = Array.from({length : 3}, () => []); property
223 let res = Array.from({length : 3}, () => [1,2,3]); property
228 let res = Array.from({length : 3}, () => 0); property
235 let res = Array.from({length : len}, () => num); property
258 let arrayLike = {0:1.1, 1:12, 2:'ss', length: 3} property
264 let res = Array.from({length : 3}, (_, index) => [index * 2]); property
270 let res = Array.from.call(nonConstructor, {length : 3}, (_, index) => [index * 2]); property
401 Array.from.call(function () { return p; }, { length: 2, 0: 1, 1: 2 }); property