Types
String
// Basic string
name = "Hello"
// String with spaces
message = "Hello, World!"
// String with special characters
path = "C:/Users/Documents"Boolean
// Boolean values
isTrue = true
isFalse = false
// In conditions
if true (
log "This will execute"
)
// Boolean operations
result = true and false // falseNumber
Array
Object
null
Type Checking
Important Notes
Last updated