# SelfStudy

Git hub -기초
github는 프로젝트 팀이 모여 코드를 관리하는 협업 툴이라고 생각 할수 있어요. 멀리 떨어져서 git이라는 공간안에서 작업내역 들을 관리 할수 있다고 생각 할수 있어요.(쉽게 말해 한국에 있는 철수와 미국에 잇는 톰이 같이 개발 작업을 할수 있다.!)그리고 개발자

Python_if문
바쁘다.몸도 바쁜데, 마음도 좀 바쁘다. 42서울을 진행하면서 C 함수 구현도 구현이지만, 해야 하는 일에 비해 몸뚱이가 하나 뿐인게 흠이다... 오늘은 점프 투 파이썬 이라는 교재의 덕을 많이 봤다. 막상 파이썬을 시작하면서, 파이썬 공부를 하는 이들마다 말하는 '파
JavaScript #19 ~ Loop
A loop is one of the most essential control method used in JavaScript. We use loops to specifically automate repetitive tasks that are performed again
JavaScript #18 ~ Object
An object is also a type of data structure used for storing various data. In arrays, we find our data by referencing a specific position number in whi
JavaScript #17 ~ Array
When we have a mass amount of data, we not only need to know how to use the data, but also where to store them. This is where data structures come int
JavaScript #16 ~ Function
Functions are the fundamental building blocks of real-world JavaScript applications. In more simpler mearning, functions are pieces of code that can b

JavaScript #15 ~ ES5? ES6? ESNext?
When we dive deeper into javascript and especially, web developing, we learn the various different versions of JavaScript such as ES5 and ES6 which we
JavaScript #14 ~ The Conditional (Ternary) Operator
Besides the if/else statement and the switch statement, there is also the conditonal (ternary) operator. this is known as 'ternary' because there is a
JavaScript #13 ~ The Switch Statement
The switch statement is simply an alternative method to the if/else statement. Although it is not used commonly today, the switch statement method det
JavaScript #11 ~ Equality Operators: == vs. ===
In previous posts, I talked about the importance and functions of logical operators (>, <). But, what if two values are equal to each other. Beside
JavaScript #10 ~ Type Conversion and Coercion
When we try to write code for a program, we often need to deal with changing the code from one type to another such as a 'string to a number' or a 'nu

JavaScript #9 ~ if / else Statements
In this post, I want to talk about the importance of using if/else statments. We need to remember that computers do things differently than that of hu
JavaScript #8 ~ Strings and Template Literals
When creating long strings in code, it is common usage to use the '+' operator to combine strings together. However, this method can become very tedio
JavaScript #7 ~ Operator Precedence
This will be another quick post on operator precedence within JavaScript code. This is a rather interesting concept to talk about as there seems to be

JavaScript #6 ~ Basic Operators
Today is a bit of recap on basic operators used in JavaScript. Once we have our values in our variables, what can we do with them? We can manipulate J
JavaScript #4 ~ Data Types
Variables can store various types of data in their container. Before going into it any further, it is important to first address the categories within
JavaScript #3 ~ Naming Variables
This is just a quick post about conventions used in naming variables. Except for a few minor cases, there is actually no limit to naming variables in
JavaScript #2 ~ Values & Variables
Values are pieces of data that are stored and used for certain programming purposes. In programming terms, a value is the smallest unit of information