js简写

2022/7/6 23:21:57

本文主要是介绍js简写,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

在数组中查找对象

要通过其中一个属性从对象数组中查找对象的话,我们通常使用for循环:

let inventory = [
  {name: 'Bananas', quantity: 5},
  {name: 'Apples', quantity: 10},
  {name: 'Grapes', quantity: 2}
];

// Get the object with the name `Apples` inside the array
function getApples(arr, value) {
  for (let index = 0; index < arr.length; index++) {

    // Check the value of this object property `name` is same as 'Apples'
    if (arr[index].name === 'Apples') {  //=> 

	


这篇关于js简写的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程