Javascript

함수(Function)

오시리엔 2023. 9. 4. 10:23
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>함수(Function)</title>
    <script>
        //자바스크립트(EcmaScript5) 에는 클래스가 없다
        //- 자바스크립트에서는 함수로 모든것을 처리
        //- 자바스크립트에는 접근제한도 없다ㅌ

        // static void show(int a) {
        //     System.out.println("Hello!");
        // }
        function show(a) {
            console.log("Hello");
            console.log(a);
        }

        //자바스크립트 함수는 아무렇게나 불러도 실행이 된다
        //- 매개변수에 값이 안들어가면 undefined
        //- 오버로딩이 불가능하다
        show();
        show(100);
        show('hello');
        show(100, 200, 300);

        //함수의 궁극적인 목적은 화면과 연결된 기능을 구현하는 것
        function message() {
            alert("Hello");
        }
    </script>
</head>
<body>
    <button onclick="message();">눌러봐!</button>
    <button ondblclick="message();">두번 눌러봐!</button>
</body>
</html>

'Javascript' 카테고리의 다른 글

글자 크기 조절  (2) 2023.09.07
색상 바꾸기  (0) 2023.09.06
이벤트(Event)  (0) 2023.09.05
변수  (0) 2023.09.01
자바스크립트 기초 시작  (0) 2023.08.31