Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- portal
- unity3d
- 유니티 3D
- Pong
- 합격
- Unity #Unity2D #Portal
- 게임 개발
- 1인 게임
- 정처기 필기
- 1인 게임 제작
- FPS
- 정보처리기사
- 게임 제작
- 유니티3d
- 자바스크립트
- 필기
- 1인 개발
- 3회차
- Vampire Survivors
- Unity2D
- 게임제작
- Unity
- 퐁
- 자바스크립트 게임
- 게임
- 토이 프로젝트
- 정처기
- 유니티
- 프로그래머스 #최소힙 #우선순위 큐
- 1인 게임 개발
Archives
- Today
- Total
Coding Feature.
JS) 코딩하다가 알게 된 사실. (다른 javascript 파일의 함수 사용) 본문
Programming Language/JavaScript
JS) 코딩하다가 알게 된 사실. (다른 javascript 파일의 함수 사용)
codingfeature 2023. 1. 13. 02:41A function cannot be called unless it was defined in the same file or one loaded before the attempt to call it.
A function cannot be called unless it is in the same or greater scope then the one trying to call it.
You declare function fn1 in first.js, and then in second you can just have fn1();
1.js:
function fn1 () {
alert();
}
2.js:
fn1();
index.html :
<script type="text/javascript" src="1.js"></script>
<script type="text/javascript" src="2.js"></script>
'Programming Language > JavaScript' 카테고리의 다른 글
[Javascript] 자바스크립트로 만든 게임 "30 Seconds Left" (0) | 2024.01.18 |
---|---|
JS) 별점 시스템 만들기 #1 (0) | 2023.01.17 |
JS) 영화 평점 시스템 #2 grid, js 파일 여러 개 사용 (0) | 2023.01.12 |
JS) 영화 평점 시스템 (select, option의 활용) (0) | 2023.01.12 |
JS) 바닐라 자바스크립트로 CRUD 구현. 맨 땅에 헤딩하기. (0) | 2023.01.11 |