공통점 parseFloat과 parseInt, Number는 argument를 받아 number type으로 리턴한다. 차이점 parseInt, parseFloat의 공통점은 string을 인자로 받는다. 차이점은 parseFloat은 실수를 뱉고 parseInt는 정수를 뱉는다. parseInt('2.1') // 2 parseInt('2.1') // 2.1 number는 모든 type을 인자로 받는다. 예를 들어, boolean type인 true를 인자로 넣으면 parseInt(true) // NaN parseFloat(true) // NaN Number(true) // 0 parseF/I는 문자가 섞인 것을 인자로 받을 수 있다. parseFloat('123.423$') //123.423 parse..