JavaScript에서 연산자는 값과 변수에 대한 연산을 수행하는 데 사용되는 특수 기호 또는 키워드입니다. 이를 통해 데이터를 조작하고 코드 흐름을 제어할 수 있습니다. 가장 일반적으로 사용되는 연산자 유형과 그 목적을 분석해 보겠습니다.
할당 연산자는 변수에 값을 할당하는 데 사용됩니다.
? 예:
let x = 10 // Assigns the value 10 to variable x let y = 5 // Assigns the value 5 to variable y
산술 연산자는 숫자에 대해 기본적인 수학 연산을 수행합니다.
? 예:
console.log("x + y = " + (x + y)) // Output: x + y = 15 console.log("x - y = " + (x - y)) // Output: x - y = 5 console.log("x / y = " + (x / y)) // Output: x / y = 2 console.log("x * y = " + (x * y)) // Output: x * y = 50 console.log("x % y = " + (x % y)) // Output: x % y = 0 console.log("(x**y) = " + (x**y)) // Output: (x**y) = 100000 console.log("(++x) = " + (++x)) // Output: (++x) = 11 console.log("(x++) = " + (x++)) // Output: (x++) = 11 console.log("(--y) = " + (--y)) // Output: (--y) = 4 console.log("(y--) = " + (y--)) // Output: (y--) = 4
비교 연산자는 두 값을 비교하고 부울(true 또는 false)을 반환합니다. 이는 루프 및 분기문에서 자주 사용됩니다.
? 예:
console.log("(x == y) = " + (x == y)) // Output: (x == y) = false console.log("(x != y) = " + (x != y)) // Output: (x != y) = true // Compares datatypes also console.log("(x === y) = " + (x === y)) // Output: (x === y) = false // Compares datatypes also console.log("(x !== y) = " + (x !== y)) // Output: (x !== y) = true console.log("(x > y) = " + (x > y)) // Output: (x > y) = true console.log("(x >= y) = " + (x >= y)) // Output: (x >= y) = true console.log("(y < x) = " + (y < x)) // Output: (y < x) = true console.log("(y <= x) = " + (y <= x)) // Output: (y <= x) = true
논리 연산자는 논리 연산을 수행하고 부울 값(true 또는 false)을 반환하는 데 사용됩니다.
? 예:
let isValidNumber = (x > 8 && 8 > y) // If both condition are correct returns true otherwise false console.log("(x > 8 && 8 > y) = " + isValidNumber) // Output: (x > 8 && 8 > y) = true let isValidCheck = (x > 20 || 8 > y) // If one of condition is correct returns true otherwise false console.log("(x > 20 || 8 > y) = " + isValidCheck) // Output: (x > 20 || 8 > y) = true let isValid = false console.log("(!isValid) = " + !isValid) // Output: (!isValid) = true
연산자는 다목적이며 연결(두 문자열 결합)을 위해 문자열과 함께 사용할 수 있습니다. 숫자와 함께 사용하면 덧셈을 수행합니다.
? 예:
// Concatenation console.log("Richa " + "webDev") // Output: Richa webDev // Addition console.log(10 + 5) // Output: 15
삼항 연산자는 조건부 검사를 수행하는 간결한 방법입니다. 조건이 참이면 하나의 값을 반환하고, 거짓이면 다른 값을 반환합니다.
? 구문:
condition ? valueIfTrue : valueIfFalse;
? 예:
const isEven = 10 % 2 === 0 ? "Number is even" : "Number is old" console.log("isEven = " + isEven) // Output: isEven = Number is even
num , --num 및 num-- 작업과 관련된 코드 조각의 출력 결과가 21인 이유를 설명하세요. 아래에 설명을 적어주세요.
let num = 20 console.log("num = " + num) // Output: (++num) = 21 console.log("(++num) = " + (++num)) // Output: (++num) = 21 console.log("(num++) = " + (num++)) // Output: (num++) = 21 console.log("(--num) = " + (--num)) // Output: (--num) = 21 console.log("(num--) = " + (num--)) // Output: (num--) = 21
출력:
num = 20 (++num) = 21 (num++) = 21 (--num) = 21 (num--) = 21
JavaScript 연산자는 효과적이고 효율적인 코드를 작성하는 데 도움이 되는 기본 구성 요소입니다. 이를 마스터하면 간단한 할당부터 복잡한 논리적 확인까지 광범위한 작업을 수행할 수 있습니다. 이들 연산자를 실험해 보면 그들의 행동을 더 잘 이해할 수 있습니다!
즐거운 코딩하세요 ✨
위 내용은 JavaScript 연산자 이해의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!