rbv_api.printARR()
Purpose
Prints the contents of a JavaScript array in the format key => value.
Reviewers: Is this also used to print to the debugging screen like print()
and println()?
Syntax
rbv_api.printArr(arr)
Parameters
arr
JavaScript array to print
Return value
None
Example
Prints the values in an array in the debugging window.
rbv_api.printArr(["First", "Second", "Third"]);