2024.04.24(수)
내일배움캠프본캠프 46일차학습일지
[왕초보] 웹개발 종합반 1주차 과제
완성본
완성코드
function checkResult() { let people = [ { 'name': '서영', 'height': 165 }, { 'name': '현아', 'height': 170 }, { 'name': '영환', 'height': 175 }, { 'name': '서연', 'height': 162 }, { 'name': '지용', 'height': 190 }, { 'name': '예지', 'height': 168 } ] $('#q2').empty() people.forEach((a) => { let name = a['name'] let height = a['height'] let temp_html = `<p>${name}의 키는 ${height}cm 입니다.</p>` $('#q2').append(temp_html) }) }
완성본
완성코드
$(document).ready(function () { fetch("http://spartacodingclub.shop/sparta_api/weather/seoul").then(res => res.json()).then(data => { let temperature = data['temp'] if (temperature < 20) { $('#temp').text('추워요'); } else { $('#temp').text('더워요'); } }) })