IT/JavaScript (2) 썸네일형 리스트형 [Weather API] 날씨 정보 받아오기 / 401 에러 Weather API - OpenWeatherMap https://openweathermap.org/ Сurrent weather and forecast - OpenWeatherMap Access current weather data for any location on Earth including over 200,000 cities! The data is frequently updated based on the global and local weather models, satellites, radars and a vast network of weather stations. how to obtain APIs (subscriptions w openweathermap.org 현재 위치에 따른 날씨 정보를 얻어.. [JavsScript] function 호출하기 function(함수) 란? - 반복해서 사용할 수 있는 코드조각 - 어떤 코드를 캡슐화 해서, 실행을 여러 번 할 수 있게 해준다. - 코드를 최소화할 수 있다. function sayHello(){ } 예제). console 에 "Hello" 출력하기 function sayHello(){ console.log("Hello!"); } sayHello() 를 입력하면 입력 한 수만큼 function 의 {} 안에 있는 코드가 실행된다. function sayHello(){ console.log("Hello!"); } sayHello(); sayHello(); sayHello(); 이전 1 다음