πŸ“š [JavaScript] ν•¨μˆ˜

이가은·2022λ…„ 4μ›” 1일
1

JavaScript

λͺ©λ‘ 보기
7/13

ν•˜λ‚˜μ˜ λͺ©μ μ„ 가진 μž‘μ—…μ„ μˆ˜ν–‰ν•˜λ„λ‘ μ„€κ³„λœ 블둝

πŸ“• ν•¨μˆ˜ μ„ μ–Έ 및 호좜

🎁 문법

function ν•¨μˆ˜μ΄λ¦„(λ§€κ°œλ³€μˆ˜1, λ§€κ°œλ³€μˆ˜2, ...) {
	ν•¨μˆ˜κ°€ ν˜ΈμΆœλ˜μ—ˆμ„ λ•Œ μ‹€ν–‰ν•˜κ³ μž ν•˜λŠ” μ‹€ν–‰λ¬Έ;
}
ν•¨μˆ˜μ΄λ¦„() λ˜λŠ” ν•¨μˆ˜μ΄λ¦„(λ³€μˆ˜1, λ³€μˆ˜2, ...)

🎈 예제

<script>
function hello() {
	document.write("μ•ˆλ…•ν•˜μ„Έμš”");
}
hello(); //μ•ˆλ…•ν•˜μ„Έμš”

function add(x, y) {
	document.write(x + y);
}
add(10, 20); //30
</script>

πŸ“™ λ§€κ°œλ³€μˆ˜, 인수, return

1. λ§€κ°œλ³€μˆ˜(parameter)

ν•¨μˆ˜λ₯Ό ν˜ΈμΆœν•  λ•Œ 인수둜 μ „λ‹¬λœ 값을 ν•¨μˆ˜ λ‚΄λΆ€μ—μ„œ μ‚¬μš©ν•  수 있게 ν•΄μ£ΌλŠ” λ³€μˆ˜

2. 인수(argument)

ν•¨μˆ˜κ°€ 호좜될 λ•Œ ν•¨μˆ˜λ‘œ 값을 μ „λ‹¬ν•΄μ£ΌλŠ” κ°’

3. return

값을 λ°˜ν™˜ν•΄μ£ΌλŠ” λ°˜ν™˜λ¬Έ

🎈 예제

<script>
function hello() {
	document.write("μ•ˆλ…•ν•˜μ„Έμš”");
}
function num(x) {
	document.write(x + "을 μž…λ ₯ν–ˆμŠ΅λ‹ˆλ‹€");
} //xλŠ” λ§€κ°œλ³€μˆ˜
function add(x, y) {
	return x + y;
} //x와 yλŠ” λ§€κ°œλ³€μˆ˜
hello(); //μ•ˆλ…•ν•˜μ„Έμš”
num(3); //3을 μž…λ ₯ν–ˆμŠ΅λ‹ˆλ‹€
var sum = add(3, 5); //3κ³Ό 5λŠ” 인수
document.write(sum); //8
</script>

πŸ“’ λ³€μˆ˜μ˜ 유효 λ²”μœ„

1. 지역 λ³€μˆ˜(local variable)

ν•¨μˆ˜ λ‚΄μ—μ„œ μ„ μ–Έλœ λ³€μˆ˜

🎈 예제

<script>
function num() {
	var x = 10;
   	document.write("μ§€μ—­λ³€μˆ˜ " + x); 
}
num(); //μ§€μ—­λ³€μˆ˜ 10
document.write(x); //Uncaught ReferenceError: x is not defined
</script>

2. μ „μ—­ λ³€μˆ˜(global variable)

ν•¨μˆ˜μ˜ μ™ΈλΆ€μ—μ„œ μ„ μ–Έλœ λ³€μˆ˜

🎈 예제

<script>
var x = 10;
function num() {
   	document.write("μ „μ—­λ³€μˆ˜ " + x);
    x = 20; //μ „μ—­ λ³€μˆ˜λŠ” ν•¨μˆ˜ λ‚΄λΆ€μ—μ„œλ„ μ ‘κ·Όν•˜μ—¬ λ³€κ²½ κ°€λŠ₯
}
num(); //μ „μ—­λ³€μˆ˜ 10
document.write(x); //20
</script>

πŸ“— ν•¨μˆ˜μ˜ 유효 λ²”μœ„

μžλ°”μŠ€ν¬λ¦½νŠΈμ—μ„œ ν•¨μˆ˜λŠ” μžμ‹ μ΄ μ •μ˜λœ λ²”μœ„ μ•ˆμ—μ„œ μ •μ˜λœ λͺ¨λ“  λ³€μˆ˜ 및 ν•¨μˆ˜μ— μ ‘κ·Όν•  수 μžˆλ‹€

🎈 예제

<script>
var x = 10, y = 20; //μ „μ—­ λ³€μˆ˜ x와 y
function sub() { //μ „μ—­ ν•¨μˆ˜ sub()
	return x - y; //μ „μ—­ λ³€μˆ˜ x, y에 μ ‘κ·Ό
}
document.write(sub()); //-10

function parentFunc() { //μ „μ—­ ν•¨μˆ˜ parentFunc()
	var x = 1, y = 2; //μ „μ—­ λ³€μˆ˜μ˜ λ²”μœ„ μ œν•œ
    function add() { //λ‚΄λΆ€ ν•¨μˆ˜ add()
    	return x + y; //지역 λ³€μˆ˜ x, y에 μ ‘κ·Ό
    } return add();
}
document.write(parentFunc()); //3
</script>

βœ” μ „μ—­ ν•¨μˆ˜λŠ” λͺ¨λ“  μ „μ—­ λ³€μˆ˜μ™€ μ „μ—­ ν•¨μˆ˜μ— μ ‘κ·Όν•  수 μžˆλ‹€
βœ” λ‚΄λΆ€ ν•¨μˆ˜λŠ” λ‹€λ₯Έ ν•¨μˆ˜ 내에 μ •μ˜λœ ν•¨μˆ˜λ‘œ κ·Έ ν•¨μˆ˜μ˜ λΆ€λͺ¨ ν•¨μˆ˜μ—μ„œ μ •μ˜λœ λͺ¨λ“  λ³€μˆ˜ 및 λΆ€λͺ¨ ν•¨μˆ˜κ°€ μ ‘κ·Όν•  수 μžˆλŠ” λͺ¨λ“  λ‹€λ₯Έ λ³€μˆ˜κΉŒμ§€λ„ μ ‘κ·Όν•  수 μžˆλ‹€

πŸ“˜ μž¬κ·€ν•¨μˆ˜

ν•¨μˆ˜ λ‚΄λΆ€μ—μ„œ 자기 μžμ‹ μ˜ ν•¨μˆ˜λ₯Ό ν˜ΈμΆœν•˜λŠ” ν•¨μˆ˜

🎈 예제

<script>
//μž¬κ·€ν•¨μˆ˜λ₯Ό μ‚¬μš©ν•΄μ„œ 5 νŒ©ν† λ¦¬μ–Ό κ΅¬ν•˜κΈ°
function fact(x) {
	if(x == 1) {
    	return 1;
    } return x * fact(x - 1);
}
document.write(fact(5)); //120
</script>

πŸ“” ν™”μ‚΄ν‘œ ν•¨μˆ˜

🎁 문법

(λ§€κ°œλ³€μˆ˜) => { ν•¨μˆ˜ λ‚΄μš© }

🎈 예제

<script>
//λ§€κ°œλ³€μˆ˜κ°€ μ—†λŠ” 경우 λ§€κ°œλ³€μˆ˜λ₯Ό λ„£λŠ” κ΄„ν˜Έ μ•ˆμ€ λΉ„μ›Œλ‘”λ‹€
var hello = () => { return "μ•ˆλ…•ν•˜μ„Έμš”" };
document.write(hello()); //μ•ˆλ…•ν•˜μ„Έμš”

//μ€‘κ΄„ν˜Έ μ•ˆμ— ν•¨μˆ˜ λ‚΄μš©μ΄ ν•œ 쀄뿐이라면 μ€‘κ΄„ν˜Έλ₯Ό μƒλž΅ν•  수 μžˆλ‹€
var hello = () => "μ•ˆλ…•ν•˜μ„Έμš”";
document.write(hello()); //μ•ˆλ…•ν•˜μ„Έμš”

//λ§€κ°œλ³€μˆ˜κ°€ ν•˜λ‚˜μΈ 경우 λ§€κ°œλ³€μˆ˜μ˜ κ΄„ν˜Έλ₯Ό μƒλž΅ν•  수 μžˆλ‹€
var hi = user => { document.write(user + "λ‹˜, μ•ˆλ…•ν•˜μ„Έμš”?"); }
hi("홍길동"); //ν™κΈΈλ™λ‹˜, μ•ˆλ…•ν•˜μ„Έμš”?

//λ§€κ°œλ³€μˆ˜κ°€ λ‘˜ 이상인 경우 λ§€κ°œλ³€μˆ˜λ₯Ό μ‰Όν‘œλ‘œ κ΅¬λΆ„ν•œλ‹€
var sum = (x, y) => x + y;
document.write(sum(5, 6)); //11
</script>
profile
κ°€λΏ‘μ΄μ˜ 곡뢀 μƒμžπŸ“¦

0개의 λŒ“κΈ€

κ΄€λ ¨ μ±„μš© 정보