UniversalUtilsMathSubtract()On this pageSubtract()두개의 숫자를 뺍니다. 부정확 할 수 있는 부동 소수점 연산을 보정합니다. Signature subtract: (a: number, b: number) => number Parameters ParameterTypeDescriptionanumber첫번째 숫자bnumber두번째 숫자 Returns number 두 숫자를 뺀 결과 Example subtract(0.3, 0.1) // 0.2subtract(0.3)(0.1) // 0.2