Doesn’t do anything, it’s just putting variables into a scope. I generally use this whenever I declare generic variables that are temporary, eg. store them in array and forget them. This way I don’t run into conflicts later on if I want to use that variable name again. Makes it simpler if you want to add a second item to the array for example.
1 Like