Versions Compared

Key

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


Tests the zone of the leftmost character in the parameter.

Parameters

  1. Value - A String value to test.

Return Value

An Object with the following Boolean properties:

  • hi - True if the leftmost character is &, A-I, or any character with the same zone as A.
  • lo - True if the leftmost character is -, J-R, or any character with the same zone as J.
  • eq - True if the leftmost character is any other value.

Example

Code Block
titleTest zone of 'A', 'J', and 'S'
  /* 
  
  Prints:
  
  true
  true
  true
  
  */
  
  var res = pjs.testZone("A");
  console.log(res.hi);
  
  res = pjs.testZone("J");
  console.log(res.lo);
  
  res = pjs.testZone("S");
  console.log(res.eq);

RPG Equivalent 

TESTZ