숫자 타입이 아닌 피연산자에 + 단항 연산자를 사용하면 피연산자를 숫자 타입으로 변환하여 반환한다.
x = true; console.log(+x); // 1 y = false; console.log(+y); // 0