Jump to content
Larry Ullman's Book Forums

drakebohan

Members
  • Posts

    1
  • Joined

  • Last visited

drakebohan's Achievements

Newbie

Newbie (1/14)

  • First Post Rare

Recent Badges

0

Reputation

  1. You can use the arrayObject.filter() method to remove elements from an array at specific index in JavaScript. var rValue = 'three' var arrayItems = ['one', 'two', 'three', 'four', 'five', 'six'] arrayItems = arrayItems.filter(item => item !== rValue) console.log(arrayItems)
×
×
  • Create New...