There is no reason; the empty double-quoted string is completely unnecessary.
The shell uses quoting to group tokens which would otherwise be split. token
is precisely equivalent to ""token
or "token"
(or """"""""""token
or """t"o"k"e"n"
etc if you will) after quote removal.
The only place you really need an empty string is when an argument should be a string of length zero (like printf '%s\n' "first line" "" "third line"
where the penultimate argument is an empty string) though it can also occasionally be useful for disambiguation ("$HOMEdir"
is distinct from "$HOME""dir"
where the former attempts to expand a variable whose name is seven characters long; though usually you'd use "${HOME}dir"
to make this distinction).
(Multiple adjacent quotes have no significance to the shell; """"
is simply the empty string ""
next to the empty string ""
.)