In C++, I normally use the 'word' operators:
not
instead of!
and
instead of&&
or
instead of||
For me it is just easier to read especially the not
when negating statements.
Is there any way to do this in Javascript/NodeJS/VueJS?
In C++, I normally use the 'word' operators:
not
instead of !
and
instead of &&
or
instead of ||
For me it is just easier to read especially the not
when negating statements.
Is there any way to do this in Javascript/NodeJS/VueJS?
No. In javascript / nodejs there is no way for logical operators to use an actual word instead of an operator symbol