JSFiddle - React, Tailwind, and code Playground
by Josh Pullen
JavaScript
function findRoots(f, numberToFind) {
}
function findRoot(f) {
let guess = 0;
const
for (let i = 0; i < 100; i++) {
const fPrime = f(guess + )
}
}
const f = (x) => {
return x**5 - 15 * x**4 + 85 * x**3 - 225 * x**2 + 274 * x - 120;
}