자주 쓰일만한 간단한 Math 메소드들, 간단히 정리. 간단히.
let n = '8f3' Math.parseInt(n) // 8 let n2 = 'f83' Math.parseInt(n2) // NaN
let n = '90.1234%' Math.parseFloat(n) // 90.1234
Math.abs(-872) // 872
Math.pow(2, 8) // 256
Math.sqrt(36) // 6