반응형
반응형
본문 바로가기

자바스크립트3

공공데이터포털 활용 프로젝트 - 지역 맛집 리스트 웹페이지 만들기 공공데이터포털 활용 프로젝트 - 지역 맛집 리스트 웹페이지 만들기 1. 공공데이터 포털 접속 https://www.data.go.kr/ 공공데이터 포털 국가에서 보유하고 있는 다양한 데이터를『공공데이터의 제공 및 이용 활성화에 관한 법률(제11956호)』에 따라 개방하여 국민들이 보다 쉽고 용이하게 공유•활용할 수 있도록 공공데이터(Datase www.data.go.kr 2. 소상공인시장진흥공단_상가(상권)정보 CSV 다운로드 3. CSV 전처리 전처리는 본인이 원하는 지역, 도로명, 사업자등록 기준 등 본인의 기준대로 전처리를 할 수 있다. 이 포스트의 예시에서는 분류가 음식이고 특정 도로명을 기준으로 전처리했다. 4. HTML, CSS, JavaScript 코드 작성 - Dynamic Filter S.. 2023. 7. 16.
[JavaScript #02] Functions [JavaScript #02] Functions 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 // Greeting function function greeting(name, time) { console.log('Good ' + time + ', ' + name + '!'); } // Calculating cube function function cube{number) { return number * number * number; } //executing greeting function greeting('John', 'Morning'); //prints out "Good Morning, John!" //executing cube function console.log(cube(2)); /.. 2020. 12. 13.
[JavaScript #01] Object [JavaScript #01] Object 1 2 3 4 5 6 7 8 let collegeStudent = { name: 'John'; age: 23; major: ComputerScience; minor: Management; }; console.log(collegeStudent.age); We just created an object named 'collegeStudent.' It has four different properties; name, age, major, and minor. At line 8, its code will print out "23" as an integer type. We will look further later when we deeply get into Object-Or.. 2020. 12. 13.

반응형