โNext slideโPrevious slideSpacePlay / PauseMNarration on/offFFullscreen?Show/hide this
Press any key to close
Skill Topic ยท Cinematic
๐ Kotlin โ Variables & Data Types
val = immutable, var = mutable โ Kotlin type inference se code clean! ๐ฆ
Topic 1
๐ 1. Variables: val vs var
๐`kotlin fun main() { // โโโ val = immutable (change nahi hoga) โโโ val name = "Raj" //โฆ
Topic 2
๐ 2. Basic Data Types
๐พ` โโโโโโโโโโโโโโโโโฆโโโโโโโโโโโโฆโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ Type โ Size โ Range /โฆ
Topic 3
๐ 3. Number Conversions
๐๏ธ`kotlin fun main() { // โโโ Kotlin me implicit conversion NAHI hai! โโโ val intNum: Int =โฆ
Topic 4
๐ 4. Strings
๐`kotlin fun main() { val name = "Kotlin" // โโโ String Templates โโโ println("Hello,โฆ
Topic 5
๐ 5. Type Checks & Smart Casts
๐`kotlin fun main() { val value: Any = "Hello Kotlin" // โโโ Type check โโโ if (value isโฆ