Before ``` const a = b + ' hello ' + c ``` After ``` const temp = b + ' hello ' + c const a = temp ``` ## Return Before ``` return b + ' hello ' + c ``` After ``` const temp = b + ' hello ' + c return temp ```