html파일
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<title>가위바위보</title>
<style>
#computer {
width: 142px;
height: 200px;
}
</style>
<script src="./rsp.js" defer></script>
</head>
<body>
<div id="computer"></div>
<div>
<button id="scissors" class="btn">가위</button>
<button id="rock" class="btn">바위</button>
<button id="paper" class="btn">보</button>
</div>
<div id="score">0</div>
</body>
</html>
script파일
const $computer = document.querySelector("#computer");
const $rock = document.querySelector("#rock");
const $scissors = document.querySelector("#scissors");
const $score = document.querySelector("#score");
const $paper = document.querySelector("#paper");
const IMG_URL = "./rsp.png";
$computer.style.background = `url(${IMG_URL}) -464px 0`;
$computer.style.backgroundSize = "auto 200px";
const rspX = {
scissors: "0", //가위
rock: "-220px", //바위
paper: "-440px", //보
};
//1단계 가위, 바위, 보 이미지를 순환한다.
let computerChoice = "scissors";
const changeComputerHand = () => {
if (computerChoice === "scissors") {
//가위면
computerChoice = "rock";
} else if (computerChoice === "rock") {
//바위
computerChoice = "paper";
} else if (computerChoice === "paper") {
computerChoice = "scissors";
}
$computer.style.background = `url(${IMG_URL}) ${rspX[computerChoice]} 0`;
$computer.style.backgroundSize = "auto 200px";
};
let intervalId = setInterval(changeComputerHand, 50);
const scoreTable = {
rock: 0,
scissors: 1,
paper: -1,
};
let clickable = true;
let score = 0;
const clickButton = () => {
if (clickable) {
//위쪽에 있는 setInterval의 intervalId 를 clear한다.
//setTimeout의 id를 clear하는 역할X
clearInterval(intervalId);
clickable = false;
//점수 계산 및 화면 표시
const myChoice =
event.target.textContent === "바위"
? "rock"
: event.target.textContent === "가위"
? "scissors"
: "paper";
const myScore = scoreTable[myChoice];
const computerScore = scoreTable[computerChoice];
const diff = myScore - computerScore;
let message;
if (diff === 2 || diff === -1) {
score += 1;
message = "승리";
} else if (diff === -2 || diff === 1) {
score -= 1;
message = "패배";
} else {
message = "무승부";
}
$score.textContent = `${message} 총: ${score}점`;
setTimeout(() => {
clickable = true;
intervalId = setInterval(changeComputerHand, 500);
}, 1000);
}
};
$rock.addEventListener("click", clickButton);
$scissors.addEventListener("click", clickButton);
$paper.addEventListener("click", clickButton);
rsp.png첨부파일
rsp.png
0.04MB
가위 바위 보 에서 배운 내용정리
가위 바위 보 만들기
./ 현재폴더
../ 상위폴더
../../ 할아버지 폴더
/ 루트 : 통상적으로 C드라이브
setTimeout(함수자리, 지연시간)
→지정된 시간이 지난 후 "특정 함수"를 실행하는 함수
→대부분 지연시간이 시간 후 실행되지만, 그 지연시간이 100%지켜진다고 장담 할 수는 없다.
setInterval(함수자리, 시간)
→지정된 시간마다 "특정 함수"를 실행하는 함수
→지연시간마다 "특정함수"를 실행한다고 100% 장담하지는 못한다.
객체를 쓰는 이유 : 공통부분으로 묶어서 그룹화
let Object = { 키 : 값 }
let Object = { name : "홍길동"}
Object.name → "홍길동"
Object["name"] → "홍길동"
Object["문자열자리"]
const rspX = {
scissors: "0", //가위
rock: "-220px", //바위
paper: "-440px", //보
};
computerChoice = 'paper' 인 경우에
rspX[computerChoice] ← 문자열자리에 "변수"가 들어가는 경우
1단계: rspX['paper'] ← 변수가 문자열로 대체
2단계: rspX['paper']에 해당하는 "값" →440px
setInterval()을 재귀형태의 setTimeout()으로 바꿀 수 있다.
setInterval( ( ) => {
console.log('hello')
}, 1000);
const function = hello() {
console.log('hello');
setTimeout(hello, 1000);
}
setTimeout(hello, 1000);
--------------------------------
<코드> 사용법
let 아이디 = setInterval( 함수, 밀리초);
clearInterval(아이디);
setInterval 함수는 반환값이 있다. 반환값은 타이머에 대한 아이디(숫자)로, 나중에 이 값을 사용해 타이머를 제거할 수 있다.
이와 마찬가지로 setTimeout함수도 clearTimeout함수로 취소할 수 있다.
단, setTimeout 함수에 인수로 넣은 함수가 실행되기 전에 clearTimeout을 호출해야 한다.
이미 실행된 함수를 없던 일로 할 수는 없기 때문이다.
let 아이디 = setTimeout(함수, 밀리초);
clearTimeout(아이디);
객체는 함수, 배열, 객체리터럴 3가지가 있다.
객체간의 비교
{ } === { }
객체끼리 비교하는 경우 false
why? 좌측에 새로운 객체, 우측에 새로운 객체 둘 다 새로운 객체이므로 서로 다르다. 따라서 false
배열간 비교
[ ] === [ ]
배열끼리 비교하는 경우 false
※배열에 객체 속함
함수간의 비교
( () => { } ) === ( ( ) => { } )
함수끼리 비교하는 경우 false
함수도 "객체"이다.
const fun = ( ) => {
console.log('고차합수입니다' );
}
console.log(fun(1) === fun(1))
→ true
const fun = (number)=>() => {
console.log('고차합수입니다', number);
}
console.log(fun(1) === fun(1))
→ false
이중 삼항 연산자
event.target.textContent === "바위" ? "rock" : event target.textContent === "가위"? "scissors" : "paper";
조검문? 참: [조건문? 참 : 거짓]
코드 줄이는 꿀팁
diff ==='고양이' || diff ==='사자' || diff ==='강아지' || diff ==='거북이'
['고양이', '사자', '강아지', '거북이' ].inclues(diff)
함수 객체에 대하여
함수는 기본적으로 "객체"이다. 함수를 "일급객체"라고 부른다.
function addNumbers(a, b) { return a +b; }
console.log(typeof addNumbers);
→function
console.log(addNumbers instanceof Object);
→addNumbers가 Object의 한 종료인가?
→true
함수를 "변수" 또는 "상수"에 할당가능
function isOddNum(number) {
console.log(
(number %2 ? ' 홀': '짝')
);
return number % 2? true: false;
};
const checkIfOdd = isOddNum; //뒤에 괄호가 없음에 유의
console.log(checkIfOdd(29));
<출력결과>
홀수입니다.
함수는 객체와 배열의 값으로도 할당 가능
let person = {
name: '홍길동',
age: 30,
married: true,
introduce: function (formal) {
return formal
? '안녕하십니까. 홍길동 대리라고 합니다.'
: '안녕하세요, 홍길동이라고 해요.';
}
};
console.log(person.introduce(true));
console.log(person.introduce(false));
let arithmetics = [
(a, b) => a + b,
(a, b) => a - b,
(a, b) => a * b,
(a, b) => a / b
];
for (arm of arithmetics) {
console.log(arm(5, 3));
}
일반적인 함수가 있고, 그와는 조금 다른 화살표 함수가 있다.
함수를 인자로 전달하는 경우
1. 전달받는 함수 : 고차 함수
2. 전달되는 함수 : 콜백 함수
예시
let list = [1, 2, 3, 4, 5];
function doInArray (array, func) {
for (item of array) {
func(item);
}
}
// console.log - console이란 객체에서 log란 키에 할당된 함수
doInArray(list, console.log);
1
2
3
4
5
doInArray : 고차함수
console.log : 콜백함수