views:

263

answers:

2

I searched for javascript byte type variables and I can't find byte type variable???

Thanks.

A: 

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.

Itay
Actually, it means that they don't have a fixed type. Their type can change dynamically but there *is* a type.
Álvaro G. Vicario
+7  A: 

There is no byte predefined type in javascript.

click this link for Javascript types, detailed

morsanu