admin管理员组文章数量:1344645
From the following thread (Multiplying an array with a single value by a number?) I got the information that it is not possible to multiply a number to all elements within an array by executing [1, 2]*3
. But since I have to do this I was wondering if there is an smart way of doing this?
I know I could write a function which iterates through all elements and multiply a number to each element manually. But I was wondering if there is a smarter way out there?
Maybe there are some libraries out there which implements some math functions where I can multiply a number to all elements of an array?
Or do you think the map function of Array can be used for this purpose?
From the following thread (Multiplying an array with a single value by a number?) I got the information that it is not possible to multiply a number to all elements within an array by executing [1, 2]*3
. But since I have to do this I was wondering if there is an smart way of doing this?
I know I could write a function which iterates through all elements and multiply a number to each element manually. But I was wondering if there is a smarter way out there?
Maybe there are some libraries out there which implements some math functions where I can multiply a number to all elements of an array?
Or do you think the map function of Array can be used for this purpose?
Share Improve this question edited May 23, 2017 at 11:52 CommunityBot 11 silver badge asked Jul 5, 2013 at 8:46 antibusantibus 1,0922 gold badges12 silver badges18 bronze badges4 Answers
Reset to default 5You can indeed use the map
function:
function multiply(input) {
return input * 3;
}
var myArray = [1, 2];
var myNewArray = myArray.map(multiply);
What this does is perform a function you provide on each element in the array, and return a new array with the results.
If you're already using jQuery, you can make it a little more concise with the each
function:
$.each(myArray, function(index, value) {
myArray[index] = value * 3;
});
This changes the existing array. Although, using the plain-JS approach, you could do myArray = myArray.map(multiply);
if you don't want a new variable.
I made a jsFiddle as an example.
This is easy with a library like math.js, which es with matrix support. You could do something like:
var result = math.multiply([1, 2], 3);
or using the expression parser:
var result = math.eval('[1, 2] * 3');
Similar to Jos de Jong's answer, if you are using numericjs you can do
var result = numeric.mul([1, 2], 3);
To give the result [3, 6]
.
You have not defined your array as an array variable: Just do as following:
function times2(theArray){
var newArray = [];
for (i = 0; i < theArray.length; i++) {
newArray.push(theArray[i] * 2);
}
return newArray;
}
document.write("Array double = ",times2([1,2,3,4,5]).toString() , "<br>");
Now it does not matter how many elements you have in your array, it multiplies them by 2. You can choose any number instead of 2.
本文标签: javascriptMultiply a number to an arrayStack Overflow
版权声明:本文标题:javascript - Multiply a number to an array - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743802763a2541620.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论