Not sure where to start?
Bootcamp
Study group
Collaborate with peers in your dedicated #study-group channel.
Code reviews
Submit projects for review using the /review command in your #code-reviews channel
/review
Karma
scrimba
import { Person } from './person.model';function add(val1: number, val2: number) { return val1 + val2;}function sayHello(person: Person) { return `Say Hello to My Little Friend, ${person.firstName}!` }function voidExample() { add(1,2);}function neverExample(){ }