screwdriverVariables

What are variables?

Variable are like containers that store data. Data ? (text, number, booleans or even arrays)

In GenZ Lang, you don't need let or var like other languages just wirte the variable name, and = sign, and the value.

vibe = "chill"    // string
score = 100       // number
isCool = true     // boolean
playlist = ["Drake", "Travis"]   // array

Last updated