const a = 1const b = 2const c = a + bconstobj = { toLong: { deep: { deep: { deep: { value: 'this is to long text. this is to long text. this is to long text. this is to long text.', } } } }}
code groups:
tab1
const a = 1const b = 2const c = a + b
tab2
const a: number = 1const b: number = 2const c: number = a + b
code highlight:
function foo() { const a = 1 console.log(a) const b = 2 const c = 3 console.log(a + b + c) console.log(a + b)}