webmanz Posted June 19, 2018 Report Posted June 19, 2018 Are all objects data types or only array objects?
administrator Posted June 21, 2018 Report Posted June 21, 2018 All objects are datatypes. In fact, each OBJECT is it's own datatype. So when you create an object, your are creating a datatype.
martinsmith Posted August 31, 2020 Report Posted August 31, 2020 Arrays can contain any type of element value but you can't store different types in a single array You can have an array of integers or an array of strings or an array of arrays, but you can't have an array that contains, for example, both strings and integers.
Recommended Posts