Updated Introduction to Editor Scripting.md (markdown)
commited
commit
d4ed4be955b73469645e9b13ccc0aa31a691b3a1
... | ... | @@ -16,7 +16,7 @@ Unlike most programming languages JS uses a versatile variable declaration this |
16 | 16 | |
17 | 17 | • `let` - is a variable that represents a local variable, its value only persist inside the codeblock `{}` where it is located |
18 | 18 | |
19 | Each of this key can represent either `num` value types (`int`, `float`), `tru` types (`bool`), or `String` and can be changed to anytime according to the value type it holds. Additionally it can also declare arrays, objects and functions. |
|
19 | Each of this key can represent either `num` value types (`int`, `float`), `tru` types (`bool`), or `String` and can be changed anytime according to the value type it holds. Additionally it can also declare arrays, objects and functions. |
|
20 | 20 | |
21 | 21 | ### Arrays and Objects |
22 | 22 | • An array basically acts as a list that is automatically indexed, you can declare an array like this |