Can I get some feedback from someone that has read the book and assure me that the book is A-OKAY when it comes to good coding habits?
Thanks
This post has been edited by remdawg: 13 October 2011 - 03:32 AM
Posted 13 October 2011 - 03:23 AM
This post has been edited by remdawg: 13 October 2011 - 03:32 AM
Posted 13 October 2011 - 11:23 AM
remdawg, on 13 October 2011 - 03:23 AM, said:
var you = "awesome";
if (you == "awesome") {
do this;
and this;
}
other code;
other code;
but if you take off the curly brackets
if (you == "awesome")
do this;
and this; //this code will be won't be considered part of the if statement