JavaScript为每个链接添加wordlist

时间:2016-11-13 21:42:59

标签: javascript

我正试图制作一个“单词”列表,让我们说

$env:PSMODULEPATH

然后打印出每个单词的链接。 所以,假设我的链接是test.com/,我想要做的是将每个单词添加到该链接,但是单独添加。所以它会打印出来:var words=["aa","ab","ac","ad","ae"];

1 个答案:

答案 0 :(得分:0)

通过在数组上使用map构造函数,您可以修改每个项目

words.map(function(val){
    return "http://test.com/" + val //Add http://test.com/ before each value in the array
})

给你

的数组
 ["http://test.com/aa", "http://test.com/ab", "http://test.com/ac", "http://test.com/ad", "http://test.com/ae"]

那么map是什么使得数组中的每个值,运行一个函数,并返回一个值。此新值将替换使用的数组部分。它类似于forEach,但map是你想要在这种情况下使用的。