is there a diff between like:
var blah: Boolean
and
var blah = Boolean =
EDIT: Also, is there a list of what variable definitions there are, and what they do?. Like Number, Boolean, ETC
just wondering what else
Printable View
is there a diff between like:
var blah: Boolean
and
var blah = Boolean =
EDIT: Also, is there a list of what variable definitions there are, and what they do?. Like Number, Boolean, ETC
just wondering what else
i've never seen var blah = Boolian =
when you type var blah: you'll see a list of all the variable definitions.
Well, when I tried that,I didn't get an error. idk.
does it work as a boolean?
doing this:
var name:dataType
is nothing more than declaring the type of data that variable is supposed to have/act like.
called data typing or strict data typing..