Series of operations in JavaScript

Problem Statement:

In this problem, we are given an array. We need to perform some specific operations on every element of the array.
Multiply by 10
Subtract by 9
Multiply by 5

Code for Series of operations in JavaScript:

myArray = [12, 2, 2, 4, 1];
newArray = [];
for (let i = 0; i < myArray.length; i++) {
value = ((myArray[i]*10)-9)*5;
newArray.push(value);
}
for(let j=0; j<myArray.length;j++){
  if(j==myArray.length-1) continue
  newArray[j] = newArray[j].toString() + ' -';
}
console.log(...newArray)

Output:

Output for Series of operations in JavaScript

Also Read:

Share:

Author: Harry

Hello friends, thanks for visiting my website. I am a Python programmer. I, with some other members, write blogs on this website based on Python and Programming. We are still in the growing phase that's why the website design is not so good and there are many other things that need to be corrected in this website but I hope all these things will happen someday. But, till then we will not stop ourselves from uploading more amazing articles. If you want to join us or have any queries, you can mail me at admin@copyassignment.com Thank you