I have an associative array like that
Array=(["one"]=1 ["two"]=2)
and after a bit of googling to find if "one" is in the array keys, I found that
if [ ${Array["one"]+_} ]; then echo "Found"; else echo "Not Found"; fi
It works as I want but I don't understand the +_ right after Array["one"] What its meaning?