멋쟁이사자처럼 프론트엔드 스쿨 7기 학습내용 정리 및 복습
<button onclick="window.alert('hello world');">hello</button>
<!DOCTYPE html>
<html lang="ko">
<head>
</head>
<body>
<script>
window.alert('hello world!');
</script>
</body>
</html>
<!DOCTYPE html>
<html lang="ko">
<head>
</head>
<body>
<script src="test.js"></script>
</body>
</html>
about:blank
페이지 접속Ctrl + Shift + i
버튼 클릭 시 열림<!DOCTYPE html>
<html lang="ko">
<head>
<title>javascript console</title>
</head>
<body>
<script>
let x = 10;
let y = 20;
console.log(x);
x = x + y;
console.log(x);
</script>
</body>
</html>
const person = {
name: '멋쟁이사자',
age: 30,
address: {
city: 'New York',
country: 'USA'
}
};
console.dir(person);
let data = {a:1, b:2, c:3}
console.table(data)
console.group('TF');
console.log('사자/팀장');
console.log('호랑이/팀원');
console.log('코끼리/팀원');
console.groupEnd();
console.group('Sub');
console.log('거북이/팀장');
console.group('Sub-1');
console.log('토끼/팀원');
console.log('다람쥐/팀원');
console.groupEnd();
const
를 제외하고 지정된 값을 계속 바꿀 수 있음
let
과const
알고 넘어가기!
let : 재할당이 가능한 변수를 선언할 때 사용
const : 재할당이 불가능한 상수를 선언할 때 사용
number type
으로, '가나다'와 같은 문자는 string type
으로 나누어 각각의 데이터 형에 맞는 여러가지 기능 지원.length
.toUpperCase()
.toLowerCase()
.indexOf()
.search()
g
플래그 기능을 사용하여 전역 검색 가능.slice
.substring