Literals
Strings
Regular strings can be denoted through double quotation marks. String interpolation can be done through backticks.
"hello world"
`hello ${name}`Numbers
10
-10Booleans
true
falseNull
nullLists
List ranges
Objects
Spread operator
In order to update an existing object, you can use the ... spread operator. This will create a new version of the object, which you can then modify fields on. For example:
Last updated