Think you have a variable that contains a string of text with spaces inbetween and you want to use that as input arguments for another script. How would you go about passing
Use double quotes:
VAR1=hello\ world #... do something else ./a_script.sh "$VAR1"