Space: Difference between revisions
Jump to navigation
Jump to search
Add javascript snippet |
|||
Line 26: | Line 26: | ||
Spaces = new Array(4 + 1).join(" "); | Spaces = new Array(4 + 1).join(" "); | ||
for(i = 0; i <= 4; i++) { | for(i = 0; i <= 4; i++) { | ||
Letter = Spaces.substring(0,i) | Letter = Spaces.substring(0,i) + CHR(65 + i)); | ||
NSB.Print((Letter)); | NSB.Print((Letter)); | ||
} | } |
Revision as of 22:53, 19 May 2013
Space(number)
Description
Space returns a string consisting of a number of spaces. The required argument, number, is any valid numeric expression.
Example (Basic)
Rem Space Example 'Space creates a string of spaces Dim Spaces, Letter Spaces = Space(4) For i = 0 to 4 Letter = Left(Spaces, i) & CHR(65 + i) Print Letter Next
Example (JavaScript)
// Space Example /* Space creates a string of spaces */ var Spaces, Letter; Spaces = new Array(4 + 1).join(" "); for(i = 0; i <= 4; i++) { Letter = Spaces.substring(0,i) + CHR(65 + i)); NSB.Print((Letter)); }
Output
A B C D E