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
// The prime factors of 13195 are 5, 7, 13 and 29.// What is the largest prime factor of the given number?function largestPrimeFactor(number) { // Good luck! return true;}largestPrimeFactor(13195);