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
// Javascriptfunction sayHello() { console.log("Hello! I can only say this...");}sayHello();function add3(x, y, z) { let answer = x + y + z; return answer; // Can we shorten this?}function negate(myInt) { return myInt * -1; console.log("This line will never print");}// Return two values?function twoReturns() { return "First return"; return "Second return"; }// function areaRect() { }// function areaTriangle() { }