Groovy 13 – Array
Groovy 13 – Array An array is a variable that can store multiple values of the same type. In traditional Java, arrays cannot store different… Read More »Groovy 13 – Array
Groovy 13 – Array An array is a variable that can store multiple values of the same type. In traditional Java, arrays cannot store different… Read More »Groovy 13 – Array
Groovy 12 – Loops Types of Loops There are 3 types of loops: while loop do-while loop for loop while Loop while (condition) { //… Read More »Groovy 12 – Loops
Groovy 11 – if then else / switch Adding Logic To the Scripts if-else Sometimes we want to control the flow of the code. This… Read More »Groovy 11 – if then else / switch Adding Logic To the Scripts
Groovy 10 – Comments and Key Words Comments Comments are part of the code we write that will be ignored by the Groovy console. They… Read More »Groovy 10 – Comments and Key Words
Groovy 9- When will our code run? As we discussed in a previous post, we can make code in different areas of the Application Composer.… Read More »Groovy 9 – When will our code run?
Groovy 8 – Precedence Precedence is showing the order in which operators are evaluated while the code runs. The table below lists all Groovy operators… Read More »Groovy 8 – Precedence
Groovy 7 – Relational Operators and Logical operators Relational Operators Operator Purpose == Equal != Not equal < Less than <= Less than or equal… Read More »Groovy 7 – Relational Operators and Logical operators
Groovy 6 – Math Operators Normal Arithmetic Operators Operator Purpose + Addition – Subtraction * Multiplication / Division % Remainder or Modulus ** Power Examples… Read More »Groovy 6 – Math Operators
Groovy 5 – Get Values From Fields Field Value Assignment Methods Values from fields are pulled into variables or even other fields by 2 possible… Read More »Groovy 5 – Get Values From Fields
Groovy 4 – Data Types Groovy Supports all of the JAVA primitive and other complex data types and actually does some improvement on them. Primitive… Read More »Groovy 4 – Data Types