I searched for javascript byte type variables and I can't find byte type variable???
Thanks.
I searched for javascript byte type variables and I can't find byte type variable???
Thanks.
Javascript is a dynamically typed language. This means that variables do not have type. You declare a variable using the var keyword, as in: "var x;" and it can hold any value: date, string, integer, whatever.