//exp(1)[br]alert("e="+Math.E);[br]//ln(2)[br]alert("ln(2)="+Math.LN2);[br]//ln(10)[br]alert("ln(10)="+Math.LN10);[br]//log_2(e)[br]alert("log_2(e)="+Math.LOG2E);[br]//log_10(e)[br]alert("log_10(e)="+Math.LOG10E); [br]//pi[br]alert("pi="+Math.PI);[br]//sqrt(1/2)[br]alert("sqrt(1/2)="+Math.SQRT1_2); [br]//sqrt(2)[br]alert("sqrt(2)="+Math.SQRT2);[br]/////////////////////////////////////[br]//abs[br]alert("abs(-4.7)="+Math.abs(-4.7));[br]//acos[br]alert("acos(0.5)="+Math.acos(0.5));[br]//asin[br]alert("asin(0.5)="+Math.asin(0.5));[br]//atan[br]alert("atan(2)="+Math.atan(2));[br]//atan2[br]alert("atan2(8,4)="+Math.atan2(8,4));[br]//cbrt[br]alert("cbrt(125)="+Math.cbrt(125));[br]//ceil[br]alert("ceil(4.4)="+Math.ceil(4.4));[br]alert("ceil(-5.1)="+Math.ceil(-5.1));[br]//cos[br]alert("cos(0 deg)="+Math.cos(0 * Math.PI / 180));[br]alert("cos(3 rad)="+Math.cos(3));[br]//cosh[br]alert("cosh(3)="+Math.cosh(3));[br]//exp[br]alert("exp(1)="+Math.exp(1));[br]//floor[br]alert("floor(4.7)="+Math.floor(4.7));[br]alert("floor(-5.9)="+Math.floor(-5.9));[br]//log[br]alert("log(2)="+Math.log(2));[br]//max[br]alert("max="+Math.max(0, 150, 30, 20, -8, -200));[br]//min[br]alert("min="+Math.min(0, 150, 30, 20, -8, -200));[br]//pow[br]alert("pow(8,2)="+Math.pow(8,2));[br]//random[br]alert("random="+Math.random());[br]//round[br]alert("round(4.7)="+Math.round(4.7));[br]alert("round(4.4)="+Math.round(4.4));[br]//sin[br]alert("sin(90 deg)="+Math.sin(90 * Math.PI / 180));[br]alert("sin(3 rad)="+Math.sin(3));[br]//sinh[br]alert("sinh(3)="+Math.sinh(3));[br]//sqrt[br]alert("sqrt(64)="+Math.sqrt(64));[br]alert("sqrt(-9)="+Math.sqrt(-9));[br]//tan[br]alert("tan(1)="+Math.tan(1));[br]//tanh[br]alert("tanh(1)="+Math.tanh(1));[br]//trunc[br]alert("trunc(8.76)="+Math.trunc(8.76));[br]//expm1[br]alert("expm1(0)="+Math.expm1(0));[br]//hypot[br]alert("hypot(3,4)="+Math.hypot(3,4));[br]//imul[br]alert("imul(3,4)="+Math.imul(3,4));[br]//log1p[br]alert("log1p(5)="+Math.log1p(5));[br]//log10[br]alert("log10(5)="+Math.log10(5));