Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
209 views
in Technique[技术] by (71.8m points)

arrays - How do i rewriting a function code javascript

A function that returns a new array that contains the product of each pair of numbers from the arguments that have the same index.

var a = [3, 5, 7];
var b = [9, 10, 11];

a.map(function(x, index) { //here x = a[index] //how do i write this as function name(){}
  console.log(b[index] * x);
});
question from:https://stackoverflow.com/questions/65878680/how-do-i-rewriting-a-function-code-javascript

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
var a = [3, 5, 7];
var b = [9, 10, 11];

let c = [];

function name(a, b) {
    a.map(function(x, index) {
         let result = b[index] * x;
         c.push(result);
     }
}

name(a, b);
console.log(c) // this will show a new array with the results

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

56.8k users

...