Articles in this series
Kotlin is considered the official Android Language, and Android development in today's time takes a Kotlin-First Approach. Concise and Safer...
Function A group of instructions and expressions can be clubbed under one block named function, which can be reused by calling that function rather...
Classes Class is a group of similar entities and can be defined using the class keyword in Kotlin. class Person { /*...*/ } Objects (i.e. instances)...
Arrays A data structure that holds a fixed number of values of the same type or its subtypes. The most common type of array in Kotlin is the...