I tried to look at many tutorials, and all tutors have their own way of coding ethic.
Some people code this way (curly braces):
others this way:
Some will add underscores on variables, others don't. And many subtle things. I've yet to see a good website explaining some of the reasons and logic behind code structures, if it for aesthetic or weight wise.
I'd like to have some links if you know some.
Some people code this way (curly braces):
Code:
function myFunction():void{
//code
}
Code:
function myFunction():void
{
//code
}
I'd like to have some links if you know some.
Last edited: