Name: Anonymous 2020-06-17 2:55
amateur here
I can't declare variables without initializing them with values, but it's bad practice to not declare all your variables at the start of your src, yes? Should I assign the unneeded variables null values and resassign the values when they're needed later on which may cause bugs, or comment out the variables at the head of the src and only actually declare them when needed?
I can't declare variables without initializing them with values, but it's bad practice to not declare all your variables at the start of your src, yes? Should I assign the unneeded variables null values and resassign the values when they're needed later on which may cause bugs, or comment out the variables at the head of the src and only actually declare them when needed?