JavaScript specific
There are a few operators in Una for compatibility with JavaScript
#
Class instantiationSymbol: new
.
Translated to JavaScript typeof operator.
It takes 1+ parameters: the first one is class name and the rest are constructor parameters..
#
Type ofSymbol: typeof
.
Translated to JavaScript typeof operator.
It takes 1 parameter.
#
Instance ofSymbol: instanceof
.
Translated to JavaScript typeof operator.
It takes 2 parameters.