Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

This API is provided to add two arrays together, by element.

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

This function will return a JavaScript array.

Example
var numbersA = [1, 2, 3, 4];
var numbersB = [9, 8, 7, 6];
 
var result = pjs.arrayOp('ADD', numbersA, numbersB);
//result = [10, 10, 10, 10]
  • No labels