Contact: aviboots(AT)netvision.net.il
39,885 questions
51,811 answers
573 users
document.write(Math.PI); /* run: 3.141592653589793 */
var n = Math.PI; document.write(n.toFixed(2)); /* run: 3.14 */
var n = Math.PI; n = n.toFixed(2); document.write(n); /* run: 3.14 */
var n = Math.PI.toFixed(2); document.write(n); /* run: 3.14 */