scrimba
Introduction to Project Euler
Project Euler: Largest prime factor 🤓
Go Pro!Bootcamp

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

Project Euler: Largest prime factor 🤓
AboutCommentsNotes
Project Euler: Largest prime factor 🤓
Expand for more info
index.js
run
preview
console
// 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);
Console
index.html
-9:20