LBound: Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
(Add javascript snippet)
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
''This function is for BASIC compatibility. It is not available in pure JavaScript projects.''
LBound(''array''[, ''dimension''])
LBound(''array''[, ''dimension''])


Line 15: Line 17:
Print "'Children' Lower Bound:", LBound(Children, 1)
Print "'Children' Lower Bound:", LBound(Children, 1)
Print "'Parents' Lower Bounds:", LBound(Parents), LBound(Parents, 2)
Print "'Parents' Lower Bounds:", LBound(Parents), LBound(Parents, 2)
</pre>
== Example (JavaScript) ==
<pre>
// LBound Example
/* LBound returns lower bound of array dimension */
LBound = function(arr, dm) {
  return 0; //JavaScript always begins with 0
}
var Other, Children=new Array(3), Parents=new Array(3,1);
Other = new Array("Damien" , "Pip" , "Wendy");
NSB.Print("'Other' Lower Bound: " + LBound(Other));
NSB.Print("'Children' Lower Bound: " + LBound(Children, 1));
NSB.Print("'Parents' Lower Bounds: " + LBound(Parents)+ " " + LBound(Parents, 2));
</pre>
</pre>


Line 36: Line 22:


<pre>
<pre>
'Other' Lower Bound:0
'Other' Lower Bound: 0
'Children' Lower Bound:    0
'Children' Lower Bound:    0
'Parents' Lower Bounds:    0      0
'Parents' Lower Bounds:    0      0
Line 48: Line 34:
   
   
[[Category:Variable Handling]]
[[Category:Variable Handling]]
[[Category:BASIC Functions]]

Latest revision as of 15:28, 25 March 2019

This function is for BASIC compatibility. It is not available in pure JavaScript projects.

LBound(array[, dimension])

Description

LBound returns a long value specifying the smallest available subscript in dimension of an array, array. The required parameter, array, is any array variable. The optional parameter, dimension, specifies which dimension's lower bound is returned, beginning with the default, 1. The lower bound of any dimension of an array is always 0.

Example (Basic)

Rem LBound Example
'LBound returns lower bound of array dimension
Dim Other, Children(3), Parents(3, 1)
Other = Array("Damien", "Pip", "Wendy")
Print "'Other' Lower Bound:", LBound(Other)
Print "'Children' Lower Bound:", LBound(Children, 1)
Print "'Parents' Lower Bounds:", LBound(Parents), LBound(Parents, 2)

Output

'Other' Lower Bound: 0
'Children' Lower Bound:    0
'Parents' Lower Bounds:    0      0

Related Items

Array, Dim, ReDim, UBound