혜진의 개발자 성장블로그

Javascript

[Javascript] Array Methods- map() and forEach() function

1️⃣ map() 와 forEach()의 공통점: 모든 요소에 콜백함수를 호출 각 요소를 순회하며 요소에 무언가를 할 수 있음 JavaScript .forEach() and .map(): These are the methods that are used to iterate on an array, more technically they invoke the provided callback function for every element of an array. Syntax: forEach((currentElement, indexOfElement, array) => { ... } map((currentElement, indexOfElement, array) => { ... } ) Parameters: curren..

Git

Git

working directory - 도화지 commit - snapshot(스냅샷) git repository - 사진첩 checkout - 이전 상태의 특정 commit으로 돌아가는 것 branch - 특정 commit을 가리키는 포인터 untracked file - working directory 안에서 새로 생성된 파일상태 add - on stage(commit을 준비하는 공간) HEAD - reference인데, master가 가리키고 있음 예) Hash value

Javascript

[Javascript] What is THIS

자바스크립트에서 this란? this의 값은 함수를 호출하는 방법에 의해 결정 참고) 자바스크립트에선 함수를 호출할때 결정되는 값과 함수를 선언할 때 결정되는 값이 존재 실행하는 동안 할당에 의해 설정될수 없고, 함수가 호출될 때마다 다를 수 있음 bind() - 함수 호출방법과 무관하게 this값을 설정할수 있는 메소드 [ES5] [ES6]에서는 bind()제공하지 않는 화살표함수 추가 Reference https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Operators/this this - JavaScript | MDN JavaScript에서 함수의 this 키워드는 다른 언어와 조금 다르게 동작합니다. 또한 엄격 모드와 비엄격 모드에서도..

CSS

[CSS] Flexbox Froggy Game

flex-flow: flex-direction flex-wrap ; Q20. The two properties flex-direction and flex-wrap are used so often together that the shorthand property flex-flow was created to combine them. This shorthand property accepts the value of the two properties separated by a space. For example, you can use flex-flow: row wrap to set rows and wrap them. Try using flex-flow to repeat the previous level. #pond..

HTML

[HTML] 절대경로(Absolute path)와 상대경로(Relative path)

경로(Path) 문서에서 다른 문서로 연결하거나 문서 내에 이미지 및 음악 파일을 넣을 때, 해당 파일의 위치를 브라우저에게 알려주어야 한다. 는 href 속성을 이용해서, 는 src 속성을 이용해서 명시한다. 이 때, 해당 파일의 위치를 경로(path)라고 한다. 경로를 표기할 때 두가지 방법이 있는데 절대경로와 상대경로가 있다. 절대경로(Absolute path, Absolute pathname, Full path) 루트 디렉토리를 포함한 주소를 갖는 경로 컴퓨터 상의 디렉토리에서 C:\를 항상 포함 URL에서는 http://를 항상 포함 항상 기준은 루트가 됨 언제 쓰는가: 일반적으로 다른 사람이 만든 문서나 파일을 연결할 때, 그 외 다른 사이트를 연결할 때 장점: 루트 디렉토리를 항상 포함하기 ..

hyejin.frontend
혜진의 개발자 성장블로그