// 덧셈 연산자
let addtion = 10 + 20;
console.log(addtion); // 30
// 뺄셈 연산자
let subtaction = 20 - 10;
console.log(subtaction); // 10
// 곱셈 연산자
let multiplication = 30 * 3;
console.log(multiplication); // 30
// 나눗셈 연산자
let division = 10 / 5;
console.log(division); // 2
// 나머지 연산자
let remainder = 10 % 3;
console.log(remainder); // 1
// 문자열 연결 연산자 -> (문자열끼리만 연결해서 사용할경우)
let hello = "안녕하세요" + " 성호그리다 입니다.";
console.log(hello);
// 숫자와 문자를 더할 경우
let changeType1 = 20 + "10";
console.log(changeType1); // 2010
// 숫자와 문자를 뺄 경우
let changeType2 = 20 - "10";
console.log(changeType2); // 10
// 숫자와 문자를 곱할 경우
let changeType3 = 20 * "10";
console.log(changeType3); // 200
// 숫자와 문자를 나눌 경우
let changeType4 = 20 / "10";
console.log(changeType4); // 2
// 숫자와 문자를 나머지로 나눌 경우
let changeType5 = 10 % "3";
console.log(changeType5); // 1