1. 데이터 - 숫자, 수학
1) parseInt, parseFloat
const pi = 3.141592
console.log(pi)
const str = pi.toFixed(2)
console.log(str)
console.log(typeof str)
const integer = parseInt(str)
const float = parseFloat(str)
console.log(integer)
console.log(float)
console.log(typeof integer, typeof float)
2) Math
수학적인 상수와 함수를 위한 속성과 메소드를 가진 내장 객체(JavaScript에 내장되어 있는 객체)
console.log(Math.abs(-12))
console.log(Math.min(2, 8))
console.log(Math.max(2, 8))
console.log(Math.ceil(3.14))
console.log(Math.floor(3.14))
console.log(Math.round(3.14))
console.log(Math.random())