νλμ λͺ©μ μ κ°μ§ μμ μ μννλλ‘ μ€κ³λ λΈλ‘
π λ¬Έλ²
function ν¨μμ΄λ¦(맀κ°λ³μ1, 맀κ°λ³μ2, ...) {
ν¨μκ° νΈμΆλμμ λ μ€ννκ³ μ νλ μ€νλ¬Έ;
}
ν¨μμ΄λ¦() λλ ν¨μμ΄λ¦(λ³μ1, λ³μ2, ...)
π μμ
<script>
function hello() {
document.write("μλ
νμΈμ");
}
hello(); //μλ
νμΈμ
function add(x, y) {
document.write(x + y);
}
add(10, 20); //30
</script>
ν¨μλ₯Ό νΈμΆν λ μΈμλ‘ μ λ¬λ κ°μ ν¨μ λ΄λΆμμ μ¬μ©ν μ μκ² ν΄μ£Όλ λ³μ
ν¨μκ° νΈμΆλ λ ν¨μλ‘ κ°μ μ λ¬ν΄μ£Όλ κ°
κ°μ λ°νν΄μ£Όλ λ°νλ¬Έ
π μμ
<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>
ν¨μ λ΄μμ μ μΈλ λ³μ
π μμ
<script>
function num() {
var x = 10;
document.write("μ§μλ³μ " + x);
}
num(); //μ§μλ³μ 10
document.write(x); //Uncaught ReferenceError: x is not defined
</script>
ν¨μμ μΈλΆμμ μ μΈλ λ³μ
π μμ
<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>