# SelfStudy

22개의 포스트
post-thumbnail

Git hub -기초

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

2022년 12월 13일
·
0개의 댓글
·
post-thumbnail

Python_if문

바쁘다.몸도 바쁜데, 마음도 좀 바쁘다. 42서울을 진행하면서 C 함수 구현도 구현이지만, 해야 하는 일에 비해 몸뚱이가 하나 뿐인게 흠이다... 오늘은 점프 투 파이썬 이라는 교재의 덕을 많이 봤다. 막상 파이썬을 시작하면서, 파이썬 공부를 하는 이들마다 말하는 '파

2021년 11월 28일
·
0개의 댓글
·
post-thumbnail

Python_입출력과 사칙연산

주말마다 파이썬 학습을 하기로 마음을 먹었다... 첫 시작은 입출력과 사칙연산이다.

2021년 11월 20일
·
0개의 댓글
·

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

2021년 7월 21일
·
0개의 댓글
·

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

2021년 7월 16일
·
0개의 댓글
·

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

2021년 7월 12일
·
1개의 댓글
·

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

2021년 7월 10일
·
0개의 댓글
·
post-thumbnail

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

2021년 6월 28일
·
0개의 댓글
·

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

2021년 6월 26일
·
0개의 댓글
·

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

2021년 6월 22일
·
0개의 댓글
·

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

2021년 6월 8일
·
0개의 댓글
·

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

2021년 6월 6일
·
0개의 댓글
·
post-thumbnail

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

2021년 6월 5일
·
0개의 댓글
·

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

2021년 5월 31일
·
0개의 댓글
·

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

2021년 5월 22일
·
0개의 댓글
·
post-thumbnail

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

2021년 5월 21일
·
0개의 댓글
·
post-thumbnail

JavaScript #5 ~ Let, Const, and Var

When first studying JavaScript, it is

2021년 5월 19일
·
0개의 댓글
·

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

2021년 5월 19일
·
0개의 댓글
·

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

2021년 5월 19일
·
0개의 댓글
·

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

2021년 5월 18일
·
0개의 댓글
·