Integer2 [Math] trunc, parseInt vs floor? 음수일 경우 값이 다르다 조심!! parseInt: 정수로 바꾼다. trunc: 소수점을 버린다. floor: 내림을 한다. 차이는 실수인 음수인 소수일 경우 -23.3을 Javascript에서 Math.trunc, parseInt와 Math.floor를 했을 때 결과가 다르다 Math.trunc(-10.05) // -10 Integer.parseInt(-10.05) // -10 Math.floor(-10.05) // -11 음수일 경우 값이 다르다. 조심하자 2023. 4. 15. 이진수<-> 십진수 소수 파트 => fractional part: Binary number <-> Decimal number Decimal to Binary To convert the fractional part of a decimal number to binary, you can use the following steps: Multiply the fractional part by 2. Write down the integer part of the result. Repeat step 1 with the fractional part of the result from the previous step. Continue this process until the fractional part becomes 0 or until you have obtained the desired number of binary digits. For exam.. 2023. 3. 26. 이전 1 다음