Niyati Thakkar
About Niyati Thakkar
Niyati is a Technical Content Writer and an engineering student. She has written more than 50 published articles on Data Structures, Algorithms, Git, DBMS, and Programming Languages like Python, C/C++, Java, CSS, HTML, KOTLIN, JavaScript, etc. that are very easy-to-understand and visualize.
howto · 2024-02-02
How to Format String in Kotlin
This article shows two ways to format string in Kotlin namely, string templates i.e using $ (dollar) sign and using String.format() method.
howto · 2024-02-02
How to Concatenate Strings in Kotlin
To concatenate two or more than two strings in Kotlin, we can use + (plus) operator, plus() method, String Builder, and String Templates.
howto · 2023-10-12
Ternary Conditional Operator in Kotlin
This article teaches alternatives for Ternary Operators like if-else expression, if-else-if ladder, when expression, and Elvis operator using Kotlin.
howto · 2023-01-03
Higher Order Functions in Kotlin
This tutorial teaches how to pass a function as a parameter and how to return a function using a function in Kotlin.
howto · 2022-03-14
The let Keyword in Kotlin
One of the scoping functions in Kotlin is let. The lambda function is used to perform an action on the current object and return any value as a result.