KDeskers (K-Desk Members)
- Tio Misbaqul Irawan (dvync)
const loves = ["programming", "reading"] loves.forEach(at => { console.log(`loves ${at}`) })
- Muhammad Islahuddin (islaarema31)
$skills = array("speaking","programming","gamers"); var_dump($skills);
- Alvin Ferdian Akbar (smartPipel)
class loves: def __init__(self, love): self.love = love def printLove(self): print(self.love) myLove = loves("I Love You")
- Abdillahi Aufal Mustachaq (dillahiro)
val myTime: Int? = null var me = "Time to " when (myTime) { null -> me += "pray" else -> me += "code" } print(me)