将变量推入对象内部的数组?

时间:2019-08-25 23:55:58

标签: javascript arrays json google-apps-script javascript-objects

我正在尝试将数据推送到对象中学生标签数组的末尾,我想知道如何做到这一点?

var tags = "2019 Student"


{
  "first_name": "Thomas",
  "last_name": "Lee",
  "email": "tjhunt03@gmail.com",
  "student_tags": 
    ["2020 Student"]
}

3 个答案:

答案 0 :(得分:1)

使用push()将项目添加到数组。

let tags = "2019 Student"


let obj = {
  "first_name": "Thomas",
  "last_name": "Lee",
  "email": "tjhunt03@gmail.com",
  "student_tags": ["2020 Student"]
};

obj.student_tags.push(tags);

console.log(obj);

答案 1 :(得分:0)

push上使用student_tags

obj.student_tags.push(tags);

答案 2 :(得分:0)

var tags = "2019 Student"

var student = {
  "first_name": "Thomas",
  "last_name": "Lee",
  "email": "tjhunt03@gmail.com",
  "student_tags": 
    ["2020 Student"]
}

您只需转到student_tags属性并按下标签即可。

student.student_tags.push(tags);