목록funtion (1)
인생은 여행 人生は旅

함수(Function) : 수납상자 입력(Parameter) : 매개변수 - 인자값을 받아서 함수 안으로 매개해 주는 변수 출력(Return) Argument : 인자 - 함수로 전달하는 값 DOCTYPE html> Function Basic function two(){ document.write('2-1'); document.write('2-2'); } document.write('1'); two(); document.write('3'); two(); Parameter & Argument Return Function Basic function two(){ document.write('2-1'); document.write('2-2'); } document.write('1'); two(); documen..
코딩 공부
2024. 1. 16. 10:36