Variables
In ScratchScript, variables are defined with the let
keyword like so:
let x = 1;
Optionally, you can also specify the type of the variable:
let x: number = 1;
Last modified: 02 мая 2024
In ScratchScript, variables are defined with the let
keyword like so:
Optionally, you can also specify the type of the variable: