Use interpolation to compose strings
Use interpolation to make string cleaner and shorter rather than long chains of + to build a string.
Do
var description = 'Hello, $name! You are ${year - birth} years old.';
Don't
var description = 'Hello, ' + name + '! You are ' + (year - birth).toString() + ' years old.';