목차 1. 연산자 2. 자료형 변환 3. 함수 [1] 연산자(Operator)console.log(`7 / 5 = ${7 / 5}`); // 7 / 5 = 1.4console.log(`7 % 5 = ${7 % 5}`); // 7 % 5 = 2// 나머지 몫을 구할 때 Math.floor() 함수를 사용하여 소수점 이하를 버릴 수 있음console.log(`7 // 5 = ${Math.floor(7 / 5)}`); // 7 // 5 = 1// 나머지 연산의 부호는 왼쪽 피연산자의 부호를 따름console.log(`4 % 3 = ${4 % 3}`); // 4 % 3 = 1console..