I have a large object and need to change some values (not all of them) to upperCase
obj.state = obj.state.toUpperCase();
obj.city = obj.city.toUpperCase();
obj.street = obj.street.toUpperCase();
obj.title = obj.title.toUpperCase();
is there a shorter way, like this:
obj(state,city,street,title).toUpperCase();
Thanks