.concat
creates a new Array. You need to overwrite the old one.
scriptUrls = scriptUrls.concat(urls);
Or if you want to keep the original scriptUrls
Array, you can .push()
the values in.
scriptUrls.push.apply(scriptUrls, urls);
This uses .apply()
to convert urls
into individual arguments passed to .push()
. This way the content of urls
is added to scriptUrls
as individual items.
Also, note that .concat()
flattens the Array. If you wanted an Array of Arrays, then you'd use scriptUrls.push(urls)
.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…