두근두근
<script>
let a = '안녕하세요';
let b = '네 반가워요';
console.log(a);
console.log(b);
</script>
<script>
let a = '안녕하세요';
let b = '네 반가워요';
console.log(a+b);
console.log(a+b+b);
</script>
<script>
let a = ['사과','배','수박']
console.log(a[1])
</script>
[ ]
를 쓰면 특정 그룹을 관리 할 수 있음[1]
를 쓰면 아래 이미지처럼 배
가 나옴[1]
이 아니라 [0]
이다.<script> let a = ['사과','배','수박'] console.log(a[0]) </script>
[person]
쓴다.<script>
let person = {'name':'bob', 'age':'30', 'height':'180'}
let name = person['name']
let age = person['age']
console.log(name, age)
</script>
<script>
let age = 25;
if (age < 20) {
console.log('청소년입니다')
} else {console.log('성인입니다')}
</script>
array.forEach(element => {
});
<script>
let ages = [15, 30, 28, 7, 40, 13];
ages.forEach(a => {
if (a < 20) {
console.log('청소년입니다')
} else {
console.log('성인입니다')
}
});
</script>
<script>
function checkResult() {
let people = [
{ 'name': '서영', 'height': 165 },
{ 'name': '현아', 'height': 170 },
{ 'name': '영환', 'height': 175 },
{ 'name': '서연', 'height': 162 },
{ 'name': '지용', 'height': 190 },
{ 'name': '예지', 'height': 168 }
]
$('#q2').empty();
fruits.forEach(a => {
let temp_html = `<p>${a['name']}은 ${a['age']}살입니다.</p>`;
$('#q2').append(temp_html);
});
}
</script>
=
<script>
function checkResult() {
let people = [
{ 'name': '서영', 'height': 165 },
{ 'name': '현아', 'height': 170 },
{ 'name': '영환', 'height': 175 },
{ 'name': '서연', 'height': 162 },
{ 'name': '지용', 'height': 190 },
{ 'name': '예지', 'height': 168 }
]
$('#q2').empty();
fruits.forEach(a => {
let name = a['name']
let age = a['age']
let temp_html = `<p>${name}은 ${age}살입니다.</p>`;
$('#q2').append(temp_html);
});
}
</script>
주말까지 코딩 과제 당첨....ㅜㅜㅜ
진짜 이거 너무 어렵다.. 이해가 잘 안댕ㅜㅜㅜ 풰에엥ㅇ
이번 한주는 프론트엔드까지 욕심있었는데 그걸 와장창 깨버렸음.. ( 열심히 해도 모르겠음... 강의 듣는데 거의 3시간씩 걸림...)
담주부터 이제 최종 프로젝트던뎅 화이팅 해보자... 화이팅