Here you can find the source of roundJs(double v, int n)
public static String roundJs(double v, int n)
//package com.java2s; /*/* ww w. jav a 2 s .c o m*/ * Copyright (C) 2009 Emweb bvba, Leuven, Belgium. * * See the LICENSE file for terms of use. */ public class Main { public static String roundJs(double v, int n) { return String.valueOf(v); } }