1. JavaScript / Говнокод #6059

    +160

    1. 1
    2. 2
    3. 3
    4. 4
    5. 5
    6. 6
    Math.round = function(number, precision)
    {
    	precision = Math.abs(parseInt(precision)) || 0;
    	var coefficient = Math.pow(10, precision);
    	return Math._round(number*coefficient)/coefficient;
    }

    Запостил: bugmenot, 22 Марта 2011

    Комментарии (6) RSS

    Добавить комментарий