I'm using typescript, and is complaining when concatenating a string,
const content = senderDisplay + ', '+ moment(timestamp).format('YY/MM/DD')+' at ' + moment(timestamp).format('h:mm A'); [tslint] Use a template literal instead of concatenating with a string literal. (prefer-template)
What is the template literal to fix this? cheers
prefer-templateand you can see what is going on...