투케이2K

283. (javaScript) [lodash 라이브러리] - forEach 사용해 collection 요소 반복 출력 수행 본문

JavaScript

283. (javaScript) [lodash 라이브러리] - forEach 사용해 collection 요소 반복 출력 수행

투케이2K 2023. 5. 14. 12:46

[개발 환경 설정]

개발 툴 : Edit++

개발 언어 : JavaScript

 

[소스 코드]

    <!-- [CDN 설정 실시] -->
    <script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.21/lodash.min.js"></script>






    <!-- [내부 자바스크립트 J쿼리 이벤트 지정] -->
    <script>
        

        /*
        -----------------------------------------
        [요약 설명]
        -----------------------------------------
        1. Lodash 는 객체, 배열 등의 데이터의 구조를 쉽게 사용할 수 있게해주는 자바스크립트 라이브러리입니다
        -----------------------------------------
        2. Lodash 설치 및 CDN 참고 사이트 : https://cdnjs.com/libraries/lodash.js
        -----------------------------------------
        3. Lodash 문법 참고 사이트 : https://lodash.com/docs/4.17.15
        -----------------------------------------
        4. forEach : collection 요소를 반복해서 출력합니다
        -----------------------------------------
        5. 참고 : 

        배열 : _.forEach([1, 2], function(value)
        JSON : _.forEach({ 'a': 1, 'b': 2 }, function(value, key)
        -----------------------------------------
        */






        // [html 최초 로드 및 이벤트 상시 대기 실시] 
        window.onload = function() {
            console.log("");
            console.log("=========================================");
            console.log("[window onload] : [start]");
            console.log("=========================================");
            console.log(""); 


            // [테스트 함수 호출]
            testMain();
        };





        // [자바스크립트 테스트 코드]
        function testMain(){
            console.log("");
            console.log("=========================================");
            console.log("[testMain] : [start]");
            console.log("=========================================");
            console.log("");


            // [변수 선언 실시]
            var array = [1, 2, 3];


            // [forEach 사용해 배열 요소 반복 출력]        
            _.forEach([1, 2], function(value) {
                console.log("");
                console.log("=========================================");
                console.log("[testMain] : [value]");
                console.log("------------------------------------");
                console.log("[value] : " + value);
                console.log("=========================================");
                console.log("");
            });



    </script>
 

[결과 출력]

 

 

반응형
Comments