summary refs log tree commit diff stats
path: root/javascript/square-root/square-root.js
blob: 8f1c1a67560c9e4a24650cbb3d8f8f12b2f02814 (plain) (blame)
1
2
3
4
5
6
export const squareRoot = (num) => {
    // The idea is not to use the built-in javascript functions such
    // as Math.sqrt(x), x ** 0.5 or x ** (1/2), it's to build your
    // own.
    return num;
};