Value Representations
Overview of the value types Internet Object can represent.
Last updated
Was this helpful?
Was this helpful?
# Scalar values
42 # Number
"Hello, World!" # Regular string
'Single quotes work too' # Regular string
unquoted string # Open string
r"C:\Users\file.txt" # Raw string
true # Boolean
false # Boolean
null # Null
b'SGVsbG8gV29ybGQ=' # Base64 byte string
d'2024-03-20' # Date
t'14:30:45' # Time
dt'2024-03-20T14:30:45Z' # DateTime
# Structured values
{ name: "John Doe", age: 30, active: true } # Object
[1, 2, 3, "four", true] # Array{
# User information
name: "John Doe", # Full name
age: 30, # Age in years
# Contact details
email: "[email protected]"
}