Updated Introduction to Editor Scripting.md (markdown)
commited
commit
ef85078983b32bad0e2f1fabbefbdf722029f337
... | ... | @@ -14,7 +14,7 @@ Unlike most programming languages JS uses a versatile variable declaration this |
14 | 14 | |
15 | 15 | • `const` - is a variable that represents a constant value, usually declared before everything |
16 | 16 | |
17 | • `let` - is a variable that represents a local variable, its value only persist inside the codeblock `{}`` where it is located |
|
17 | • `let` - is a variable that represents a local variable, its value only persist inside the codeblock `{}` where it is located |
|
18 | 18 | |
19 | 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. |
20 | 20 |