如何使用模板字符串访问Javascript数组的元素?

时间:2019-06-02 14:27:38

标签: javascript arrays template-strings

我有一个Javascript数组,需要在模板字符串中访问其值,该怎么办?

我有这样的东西

//an array named link globally defined
function formatter(row,value){
    return `<a href = $link[$row]>Abc</a>`;
}

1 个答案:

答案 0 :(得分:2)

如果您明确询问“访问模板字符串中的数组值”,那么

const arr = [1,2,3]

console.log(`${arr[0]}`) // 0

如果您希望将索引作为变量,则可以使用

const arr = [1,2,3]
const index = 0
console.log(`${arr[index]}`) // 1

并回答您的代码:

const link = [1,2,3]

function formatter(row,value){
    return `<a href = ${link[row]}>Abc</a>`;
}

会工作。

例如

formatter(0) // "<a href = 1>Abc</a>"