function decimal(num,v){ var vv = Math.pow(10,v); return Math.round(num*vv)/vv; } alert(decimal(12.335,2));