| JavaScript |
|---|
| static HasElements(arrValue) |
| JavaScript |
|---|
// Checks if an array has elements.
HasElements()
{
let arrValue = [ "Value" ];
let result = LJC.HasElements(arrValue);
// result:
// true;
arrValue = [];
result = LJC.HasElements(arrValue);
// result:
// false;
}
|