Skip to content
Groovy 3 – Variables

Groovy 3 – Variables Variables are placeholders. What do I mean by this? If you remember in math if you do something like x =

Read More »
Groovy 4 – Data Types

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 6 – Math Operators

Groovy 6 – Math Operators Normal Arithmetic Operators Operator Purpose + Addition – Subtraction * Multiplication / Division % Remainder or Modulus ** Power Examples

Read More »
Groovy 8 – Precedence

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 12 – Loops

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 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 14 – Map

Groovy 14 – Map A map is a collection of key-value pairs, similar to a dictionary. In a dictionary, you have words (keys) and their

Read More »
Groovy 15 – STRING

Groovy 15 – STRING A String is a text. Any text is a String. String is not just a simple data type; it is actually

Read More »