내일배움캠프_본캠프_47일차_학습일지_[왕초보] 웹개발 종합반 2,3주차_과제

예림·2024년 4월 25일
0

2024.04.24(수)

내일배움캠프본캠프 46일차학습일지
[왕초보] 웹개발 종합반 1주차 과제

💡[왕초보] 웹개발 종합반 2주차 과제

  • 과제 내용 : 아래와 같은 결과를 만들기

완성본

완성코드

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)
    })
}

💡[왕초보] 웹개발 종합반 3주차 과제

  • 과제 내용 : 20도를 기준으로 높으면 더워요, 낮으면 추워요가 나오게 해주세요

완성본

완성코드

$(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('더워요');
        }
    })
})
profile
UXUI취준생입니다

0개의 댓글