반응형

분류 전체보기 290

[자바스크립트] 코드아카데미 문제풀이 Build "Rock, Paper, Scissors" (4/9)

[자바스크립트] 코드아카데미 문제풀이 Build "Rock, Paper, Scissors" (4/9) Computer Choice: Part 2 We have computerChoice but it now equals a random number between 0 and 1. We need to somehow translate this random number into a random choice of rock, paper, or scissors. How do we do this?! 이제 컴퓨터가 가위바위보를 고를 차례입니다. if else if else를 활용하여 0~1까지의 난수를 구간별로 나누어 rock, paper, scissors를 배분합니다. var userChoice = prompt("Do ..

카테고리 없음 2014.07.23

[자바스크립트] 코드아카데미 문제풀이 Build "Rock, Paper, Scissors" (3/9)

[자바스크립트] 코드아카데미 문제풀이 Build "Rock, Paper, Scissors" (3/9) Computer Choice: Part 1 Awesome! We now need the computer to make a choice. The game is only going to be fun if the computer chooses randomly. Luckily JavaScript has something that can help with this. If we declare a variable and make it equal to Math.random(), that variable will equal a number between 0 and 1.원문링크 var 변수 computerChoice에 랜..

카테고리 없음 2014.07.23

[자바스크립트] 코드아카데미 문제풀이 Build "Rock, Paper, Scissors" (2/9)

[자바스크립트] 코드아카데미 문제풀이 Build "Rock, Paper, Scissors" (2/9) User Choice We start by first asking the user which option they want to pick. We will later use this choice in the compare function to determine the winner. 원문링크 이용자에게 가위바위보를 결정했다고 물어보고 그 대답을 userchoice에 저장합니다. var userChoice = prompt("Do you choose rock, paper or scissors?"); 위와 같이 입력하면 통과합니다. 전체 목록 바로가기

카테고리 없음 2014.07.23

[자바스크립트] 코드아카데미 문제풀이 목록

[자바스크립트] 코드아카데미 문제풀이 목록 코드아카데미는 세계적으로 유명한 코딩 교육 사이트입니다. 일반적인 강의 사이트와는 다르게 직접 웹페이지에서 배운 내용을 실행해보면서 진행할 수 있는 것이 특징이자 큰 장점입니다. 본 사이트의 강좌 중 일부는 한글 베타 버전이 공개되어 사용 할 수 있습니다. 영어라는 언어의 장벽을 무시 할 수 없는 분들은 한글 베타버전으로 나온 html과 자바스크립트 부분만 먼저 습득 하시고나면 나머지 강좌들도 차츰 한글화가 되어 있을 것이라고 예상합니다. 본 페이지는 가끔 다음 강좌로 넘어가지 않는 바람에 pass 마크를 찍지 못하고 그냥 오답인 상태로 수강을 완료했던 강좌들 중 일부를 재도전 하는 김에 남긴 정보입니다. 찝찝하게 수강 달성 배찌를 따지 못한 분들에게는 도움이 ..

카테고리 없음 2014.07.23

[자바스크립트] 코드아카데미 문제풀이 Build "Rock, Paper, Scissors" (1/9)

[자바스크립트] 코드아카데미 문제풀이 Build "Rock, Paper, Scissors" (1/9) The Game Rock paper scissors is a classic 2 player game. Each player chooses either rock, paper or scissors. The possible outcomes:- Rock destroys scissors.- Scissors cut paper.- Paper covers rock. Our code will break the game into 3 phases: a. User makes a choice b. Computer makes a choice c. A compare function will determine who wins 그냥 ..

카테고리 없음 2014.07.22

[자바스크립트] 코드아카데미 문제풀이 Introduction to Functions in JS (12/13)

[자바스크립트] 코드아카데미 문제풀이 Introduction to Functions in JS (12/13) Functions & if / else 함수 내에 조건문을 걸어 들어온 인수에 따라 다른 return 값을 보내는 연습이다. 참고 : 리턴 값으로 문자열을 내보낼 때는 별도의 명령이 필요 없다. 정답// Write your function below. // Don't forget to call your function!var sleepCheck=function(numHours) { if (numHours>=8){return "You're getting plenty of sleep! Maybe even too much!"; } else {return "Get some more shut eye!"} ..

카테고리 없음 2014.07.22

[자바스크립트] 코드아카데미 정답풀이 Introduction to Functions in JS (10/13)

자바스크립트의 지역 변수와 전역변수 Global vs Local Variables 자바스크립트는 var 를 붙이는 형태로 지역변수를 선언할 수 있다. var를 붙이지 않은 상태에서 변수를 선언하면 전역함수가 된다. 4행의 my_number 변수에 var를 붙여 지역변수화 시켜준다. 그러면 마지막 콘솔로그에서의 my_number 값이 14로 변하지 않고 그대로 7로 유지되는 것을 보여주면서 테스트가 넘어간다.

카테고리 없음 2014.07.22

[자바스크립트] 코드아카데미 정답풀이 Introduction to Functions in JS (9/13)

주제는 두개의 인수를 전달받는 함수 만들기다. 지정된 함수의 이름(perimeterBox)에서 알 수 있듯이 사각형의 둘레를 구하는 함수를 만드는 것이 이번 테스트의 목적이다. http://www.codecademy.com/courses/javascript-beginner-en-6LzGd/2/1?curriculum_id=506324b3a7dffd00020bf661# Functions with two parameters So far we've only looked at functions with one parameter. But often it is useful to write functions with more than one parameter. For example, we can have the fol..

카테고리 없음 2014.07.22