赞
踩
- let arr1 = ["小明", "小燕子"];
-
- let arr2 = [{
-
- names: "小明",
-
- id: 1
-
- }, {
-
- names: "小红",
-
- id: 2
-
- }, {
-
- names: "小燕子",
-
- id: 3
-
- }];
-
- let arr3 = [];
-
- arr1.forEach(element => {
-
- let ids = arr2.find(ele => {
-
- return ele.names == element
-
- })
-
- arr3.push(ids.id)
-
- });
-
- console.log(arr3);
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。