Answers for "js add an item to an array"

4

js add array to array

const array1 = ['a', 'b', 'c'];
const array2 = ['d', 'e', 'f'];
const array3 = array1.concat(array2);
Posted by: Guest on September-18-2020
0

adding an item to an array

addItems = items => {
  this.setState({
    emp: [
      ...this.state.emp,
      ...items
    ]
  })
}
Posted by: Guest on June-02-2021

Code answers related to "js add an item to an array"

Code answers related to "Javascript"

Browse Popular Code Answers by Language