You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
408 B
13 lines
408 B
let negativeInteger = -10
|
|
zeroInteger = 0,
|
|
positiveInteger = 42,
|
|
negativeDecimal = -16.84,
|
|
zeroDecimal = 0.0,
|
|
positiveDecimal = 420.69,
|
|
singleQuote = 'A string between single quotes',
|
|
doubleQuote = "A string between double quotes",
|
|
backtick = `A string between backticks`,
|
|
trueBool = true,
|
|
falseBool = false,
|
|
undefinedVariable = undefined,
|
|
emptyVariable = null |