I'm trying to create a multidimensionnal array.
var ingredients_list = [];
var data_to_push = [1,50,'test']
ingredients_list.push(data_to_push);
var data_to_push = [2,'','']
ingredients_list.push(data_to_push);
Which give me the following array :
(2) [Array(3), Array(3)]
0: (3) ["1", 50, "test"]
1: (3) ["2", "", ""]
length: 2
__proto__: Array(0)
How can I update the second array and to get the follwoing output by finding the id 2
:
(2) [Array(3), Array(3)]
0: (3) ["1", 50, "test"]
1: (3) ["2", 35, "Updated"]
length: 2
__proto__: Array(0)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…