---
title: "CS Study 01"
date: 2020-06-16
updated: 2020-06-16
category: computer-science
canonical: https://intzzzero.dev/cs-study-01/
source: "Between Negative and Positive"
language: ko
---
<iframe width="560" height="315" src="https://www.youtube.com/embed/8aGhZQkoFbQ" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>

### 위의 영상에 등장하는 용어를 모두 이해하는 것이 목표 
- 컴퓨터는 전압으로 0, 1을 구분
- 2진수, 10진수, 16진수? - 정수를 표현하는 방식의 차이

> 10진수: 한 자리에 올 수 있는 숫자가 10개(0~9) radix
> 2진수: 0과 1
> 16진수: 0~f  - 16개

- JS의 단점:  number의 타입이 하나밖에 없음(double = 8byte)
->  I/O 작업을 위한 언어이기 때문에
- 정수 표현 범위가 있음. 하기 링크 참고.
- https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/Number/MAX_SAFE_INTEGER
- https://en.wikipedia.org/wiki/IEEE_754
