선언적 함수
가장 기본적으로 사용되는 함수의 형태입니다.
Last updated
Was this helpful?
가장 기본적으로 사용되는 함수의 형태입니다.
Last updated
Was this helpful?
Was this helpful?
function func1(){
document.write("function1가 실행되었습니다.");
}
function func1(){
document.write("function2가 실행되었습니다.");
}
func1();
// function2가 실행되었습니다.