I've seen that some people when writing bash script they define local variables inside an if else statement like example 1
Example 1:
#!/bin/bash
function ok() {
  local animal
  if [ ${A} ]; then
     animal="zebra"
  fi
echo "$animal"
}
A=true
ok
For another example, this is the same:
Example 2:
#!/bin/bash
function ok() {
  if [ ${A} ]; then
     local animal
     animal="zebra"
  fi
echo "$animal"
}
A=true
ok
So, the example above printed the same result but which one is the best practice to follow. I prefer the example 2 but I've seen a lot people declaring local variable inside a function like example 1. Would it be better to declare all local variables on top like below:
function ok() {
 # all local variable declaration must be here
 
 # Next statement
 
}
 
     
     
    