show/hide this revision's text 2 sigDig -> sigFigs

Here's a short and sweet JavaScript implementation:

function sigDig(nsigFigs(n, sig) {
    var mult = Math.pow(10, sig - Math.floor(Math.log(n) / Math.LN10) - 1);
    return Math.round(n * mult) / mult;
}

alert(sigDig(1234567alert(sigFigs(1234567, 3)); // Gives 1230000
alert(sigDig(0.06805alert(sigFigs(0.06805, 3)); // Gives 0.0681
alert(sigDig(5alert(sigFigs(5, 3)); // Gives 5
show/hide this revision's text 1

Here's a short and sweet JavaScript implementation:

function sigDig(n, sig) {
    var mult = Math.pow(10, sig - Math.floor(Math.log(n) / Math.LN10) - 1);
    return Math.round(n * mult) / mult;
}

alert(sigDig(1234567, 3)); // Gives 1230000
alert(sigDig(0.06805, 3)); // Gives 0.0681
alert(sigDig(5, 3)); // Gives 5