
| Command: | Print (B) |
| Codeskulptor: | print "Hello" |
| EzpzJS: | bprint("Hello"); |
| EzpzJs Explaination | This is a print command that works with last Insert Body tag |
| bprint notes: | This is the standard print statement. You should use this when doing a print command. |
| Command: | Printwln (B) |
| Codeskulptor: | print "Hello" |
| EzpzJS: | bprintwln("Hello"); |
| EzpzJs Explaination | This is a print command that works with last Insert Body tag with no line break |
| bprint notes: | This is the standard print statement. You should use this when doing a print command. |
| Command: | Print (A) |
| Codeskulptor: | print "Hello" |
| EzpzJS: | aprint("Hello"); |
| EzpzJs Explaination | This is a print command that works with First Insert Body tag |
| bprint notes: | This is a special print statement. You should use this when doing a print command to let the user know something about your program |
| Command: | Printwln (A) |
| Codeskulptor: | print "Hello" |
| EzpzJS: | aprintwln("Hello"); |
| EzpzJs Explaination | This is a print command that works with First Insert Body tag without a limb |
| bprint notes: | This is a special print statement. You should use this when doing a print command to let the user know something about your program |
| Command: | Print (Z) |
| Codeskulptor: | print "Hello" |
| EzpzJS | zprint(a) |
| EzpzJs Explaination | This is a print command that drops your variable in the body wherever the script is |
| EzpzJs Notes: | This should never really be used. If you know what your doing enough to use this, you should just make alterations wherever necessary. Nothing personal, just a suggestion. |
| Command: | Printwln (Z) |
| Codeskulptor: | print "Hello" |
| EzpzJS | zprintwln(a) |
| EzpzJs Explaination | This is a print command that drops your variable in the body wherever the script is (without a line break). |
| EzpzJs Notes: | This should never really be used. If you know what your doing enough to use this, you should just make alterations wherever necessary. Nothing personal, just a suggestion. |
| Command: | String Conversion |
| Codeskulptor: | Str(4) |
| EzpzJs: | str(4); |
| EzpzJs Explaination: | This is a command to convert a number to a string |
| Command: | String to Integer Converstion |
| Codeskulptor: | int("5") |
| EzpzJs: | int("5") |
| EzpzJs Explaination: | This command converts a string to a number |
| Command: | Check string for number |
| Codeskulptor: | unknown |
| EzpzJs: | isNumber('555'); |
| EzpzJs Explaination: | Checks to see if a string is a number |
| Command | Random |
| Codeskulptor: | random.randrange(0, 10) |
| EzpzJS: | rand(1, 10) |
| EzPzJS Explaination | The first number in range is included in the random selection, so is the last number. |