Here are some expression examples:- false || true - evaluates to true - the boolean,
- 1 <= 2 && 2 != 3 - evaluates to true - the boolean,
- ''Hello '' + ''world!!!'' - evaluates to ''Hello world!!!'' - the string,
- 7 + 8 - evaluates to 15 - the number,
- ''a,b,c,d,e''.split('','').get(1) - evaluates to ''b'' - the string,
- screenSize().x + aVariableName - assuming, that under aVariableName there is a number stored evaluates to number value,
krzys2014-11-23