“react-родной массив. Фильтр с помощью индексной функции стрелки” Ответ

react-родной массив. Фильтр с помощью индексной функции стрелки

//
// in react-native, removing an item from an array. SelectedStoryPhotos is the array name, remember item is the array item, index is it's position in the arry, picture
// index is the index of the array item you want removed passed in.
// 
	this.setState(state => {
		const selectedStoryPhotos = state.selectedStoryPhotos.filter((item, index) => pictureindex !== index);
		return {selectedStoryPhotos,
		};
	});
Anorak

Filter () массив объектов при изменении React

const handleChange = (e) => {
      const id = hospitalsDetails.filter(obj => obj.hospitalName == e.target.value)
      setCurrentApp({ ...currentApp, [e.target.id]: e.target.value, ["hospitalID"]: id.hospitalID })  
}
Volcano

Ответы похожие на “react-родной массив. Фильтр с помощью индексной функции стрелки”

Вопросы похожие на “react-родной массив. Фильтр с помощью индексной функции стрелки”

Больше похожих ответов на “react-родной массив. Фильтр с помощью индексной функции стрелки” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования