======Types====== PTPScript supports the following data types: * [[.Types:Boolean|Boolean]] * [[.Types:Number|Number]] (split into Integer and Float) * [[.Types:String|String]] * [[.Types:Array|Array]] The documentation will also use the word [[.Types:Mixed|Mixed]] to refer to a value that could be more than one type. To see the type of a value, use the ''[[.Operators:Type Casting|typeof]]'' operator. To check if a value is a certain type, use the other [[.Operators:Type Checking|type checking operators]]. To convert a value from one type to another, the [[.Operators:Type Casting|type casting operators]] should be used.