묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
[질문]다음을 with문을 사용하여 간략히 기술하시오.
2002.09.30 20:32
document.write("abs(-3.14) is " + math.abs(-3.14) + "<br>");
document.write("sin(0.5) is " + math.sin(0.5) + "<br>");
document.write(random numver is" + math.random() + "<br>");
도저히 머리가 딸려서.
꼭좀 올려주세요..ㅠㅠ
document.write("sin(0.5) is " + math.sin(0.5) + "<br>");
document.write(random numver is" + math.random() + "<br>");
도저히 머리가 딸려서.
꼭좀 올려주세요..ㅠㅠ
일단 math가 아니라 Math인것 같구요. 세번째 라인에선 "표가 하나 빠졌네요.
세 라인 모두 Math 클래스(객체)의 abs, sin, random 메소드(함수)를 호출하고 있으므로
문제에서 원하는 건 with문을 이용해 Math를 밖으로 빼라는 거 같네요...
with (Math)
{
document.write("abs(-3.14) is " + abs(-3.14) + "<br>");
document.write("sin(0.5) is " + sin(0.5) + "<br>");
document.write("random number is " + random() + "<br>");
}