//greeting.js 파일
function welcome(){
return 'Hello world';
}
//main.html 파일
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<script src="greeting.js"></script>
</head>
<body>
<script>
alert(welcome());
</script>
</body>
</html>
main.html 에서 greeting.js 의 welcome 함수를 호출하여 Hello world 출력하도록 만든 코딩