전체 글
-
DOM (2)React/DOM 2021. 10. 23. 12:47
이 글은 자바스크립트의 DOM(Document Object Model)에 관한 기본 개념 및 문법을 정리하기 위해 작성하였습니다. The document keyword allows you to access the root node of the DOM free. Before you can access a specific element in the page, first you must access the document structure itself. ex) // If you wanted to access element in your script document.body // This will return body element of that DOM. < Twea..
-
DOM (1)React/DOM 2021. 10. 22. 17:26
이 글은 자바스크립트의 DOM(Document Object Model)에 관한 기본 개념을 정리하기 위해 작성하였습니다. DOM is a representation of a webpage created by and stored in user's browser. To allow for web scripting languages to access, modify, and update the HTML File. (Think of the DOM as the link between an HTML and scripting languages) DOM is a language-agnostic structure implemented by browsers. The browser take..
-
Higher-Order FunctionsJavaScript 2021. 10. 19. 19:38
이 글은 자바스크립트의 Higher-Order Functions(고차함수)에 관한 개념 및 문법을 정리하기 위해 작성하였습니다. We are often unaware of the number of assumptions we make when we communicate with other people in our native languages. If we told you to “count to three,” we would expect you to say or think the numbers one, two and three. We assumed you would know to start with “one” and end with “three”. With programming..
-
How to backtrack in GitGit 2021. 10. 18. 13:59
Git에서 수정사항을 되돌리는 방법에 대한 정리글입니다. To see the most recently made commit. The Commit you are currently on is the HEAD commit.(in many case, the most recently made commit) ex) $ git show HEAD commit cc09c926c4db753354b5b66755dfaa25fecfbca8 Author: codecademy Date: Mon Oct 18 02:44:16 2021 +0000 Complete the ghosts line diff --git a/scene-5.txt b/scene-5.txt index b12dd97..5dd5d4e 1006..
-
Introduction to GitGit 2021. 10. 18. 11:38
Git의 기본 개념 및 문법 Git is a software that allows you to keep track of changes made to a project over time. Git works by recording the changes you make to a project, storing those changes, then allowing you to reference them as needed. To turn the project directory into a Git project. The word 'init' means initialize. $ git init # result example Initialized empty Git repository ..
-
Git WorkflowGit 2021. 10. 18. 11:37
Git을 활용한 Workflow 정리 1. Git : 소스 코드 기록을 관리하고 추적할 수 있는 버전 관리 시스템 2. GitHub : Git Repository를 관리할 수 있는 클라우드 기반 서비스 - 이미 존재하는 Project(Repository) 1. 다른 Remote Repository를 내 Remote Repository로 가져오기 : GitHub접속 후 가져올 Remote Repository 접속 -> 우측 상단의 Fork 클릭 2. 내 Remote Repository에 있는 코드를 Local Repository(내 컴퓨터)로 가져오기 git clone # example git clone https://github.com/tkdgns2..
-
Objects (2)JavaScript 2021. 10. 17. 11:40
이 글은 자바스크립트의 Objects(객체)에 관한 개념 및 문법을 정리하기 위해 작성하였습니다. The this keyword refers to the calling object and which provides access to the calling object's properties. (calling object : object that a method belongs to) Method do not automatically have access to other internal properties of the calling object. ex) // Not use this keyword const robot = { model: 'A-13', provideName(..
-
Objects (1)JavaScript 2021. 10. 17. 00:22
이 글은 자바스크립트의 Objects(객체)에 관한 개념 및 문법을 정리하기 위해 작성하였습니다. We can use JavaScript objects to model real-world things, like a basketball, or we can use objects to build the data structures that make the web possible. JavaScript objects are containers storing related data and functionality. To create a Object. let object = { 'key' : value, key : value } Objects ..