Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


This API is provided to add combined two arrays together, by elementusing an arithmetic operation. Each array element is combined separately.

Parameters
  1. Operation (string) - "ADD", "SUB", "DIV", or "MUL" and "MULT"
  2. Array
  3. Array
Return Value

This function will return a A JavaScript array.

Example
Code Block
languagejavascript
var numbersA = [1, 2, 3, 4];
var numbersB = [9, 8, 7, 6];
 
var result = pjs.arrayOp('"ADD'", numbersA, numbersB); // result =is [10, 10, 10, 10]