first = 'London,england'; city=substr(first,1,6); new_city=city||","||'England'; What is the value of new_city?
Reveal answer
Fill a bubble to check yourself
first = 'London,england'; city=substr(first,1,6); new_city=city||","||'England'; What is the value of new_city?