Skip to main
a head full of software engineering by
Timo Mämecke
Skip to content
Jump to navigation
function hello(params: unknown) {
  return 'world'
}

export const foo = {
  bar: 'baz',
  quox: ['a', 1, {}],
}
ts
console.log('hewwo')
console.log('hello')
console.log('goodbye')
ts
console.log('Not highlighted')
console.log('Highlighted')
console.log('Not highlighted')
ts
const message = 'Hello World'
console.log(message) // prints Hello World
ts
console.log('Not focused');
console.log('Focused')
console.log('Not focused');
ts
console.log('No errors or warnings')
console.error('Error')
console.warn('Warning')
ts