let sqrt = (c, depth = 100, x = 1) => depth <= 0 ? x : sqrt(c, depth - 1, x - (Math.pow(x, 2) - c)/(2*x)) console.log(sqrt(2));