Operators and expressions
2
'something'
true
undefined
age //where 'age' is the name of a variable
{} //an empty object1 / 2
i++
i -= 2
i * 2'A ' + 'string'Last updated
2
'something'
true
undefined
age //where 'age' is the name of a variable
{} //an empty object1 / 2
i++
i -= 2
i * 2'A ' + 'string'Last updated
a && b
a || b
!a