Простые типы / Символьный тип

//In TypeScript there are no char
//type, only string 
let charA = 'A'
console.log(`charA is \"${charA}\"`)

let str = "character " + charA
//str is "character A"
console.log(`str is \"${str}\"`)