+ 4
a = 42 if a > 7 puts "Yes" end why do we put all the spaces between?
2 Antworten
+ 9
So we can make the code readable its useful for separating algorithms
+ 6
you dont for example ypu could wright var a = 45; if (a > 10) {document.write("hello")}; all on one line, you use all the spaces to make you code more readable