Function : 반복해서 사용할 수 있는 코드

     

    "Hello my name is ming and I'm 10" 를 출력하는 function만들기

    function sayHello(nameOfPerson,age){
        console.log("Hello my name is " + nameOfPerson + " and I'm " + age);
    }

    sayHello("nico", 10); //Hello my name is nico and I'm 10
    sayHello("taewoo", 25); //Hello my name is taewoo and I'm 25
    sayHello("taeho", 30);//Hello my name is taeho and I'm 30

     

    주의! 변수 입력 순서를 알맞게 입력해야 함

     

    더하고 나눌 수 있는 계산기 만들기

    function plus(fristNumber,secondNumber) {

            console.log(fristNumber+secondNumber);

    } function divide (a,b) {

           console.log(a/b);

    }

    // divide 안에서 a,b 변수가 있다. fristNumer 변수는 여기서 쓸 수 없음.

    plus(1,2) ;

    divide(8,4);

     

    주의! fuction 안에서 정의내린 변수는 fuction body 안에서만 접근 가능하다.

    '개발언어 > 노마드코더-크롭앱 클론코딩' 카테고리의 다른 글

    Objects  (0) 2022.07.01
    Array  (0) 2022.07.01
    Booleans (+ null과 undefined 의 차이)  (0) 2022.07.01
    변수( var vs const,let)  (0) 2022.07.01
    크롬앱 클론코딩 시작!  (0) 2022.07.01

    댓글