DEV Community

Discussion on: I'm a senior developer and I regularly google "html image tag"

Collapse
 
tailcall profile image
Maria Zaitseva • Edited

I agree, string interpolation is cool, but sometimes I feel that some simple operations are more readable if you just use concatenation, like when adding a prefix to a string.

let prefixedString = prefix + string
// versus
let prefixedString = "\(prefix)\(string)"

When my brain sees latter, it thinks "oh, some serious formatting is probably going on here, I should totally spend time and energy to carefully investigate it".