Techoceanhub logo

Year 2021

Different modifiers in Kotlin (Chapter-14)

let us study different modifiers in kotlin, they are listed as private, protected, internal, and public. By default visibility modifier is public. If you do not specify any visibility modifier, public is used by default, which means that your declarations will be…

What is lateinit keyword in kotlin?(Chapter-12)

The defination of lateinit keyword is very simple as the name suggest it says ” Late initialization“. This keyword is often considered as one of the best feature which makes kotlin more advantageous to use but we should not confuse…

Inheritance in Kotlin – (Chapter-8)

We have worked with inheritance concepts in Java, c#, and many other languages, but now let’s see how the inheritance concept works with Kotlin. By definition, we all know that inheritance means acquiring some or whole properties of the parent…

Understand Two Way binding in Vue JS – 4

In this lesson we will see example regarding , how to pass the data both the way. Two way data binding means: When the user types in the input , value gets updated to match the value in input . When you update…