Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

โอเปอเรเตอร์ใน JavaScript คืออะไร?


ให้เราใช้นิพจน์ง่ายๆ '4 + 5 เท่ากับ 9' ในที่นี้ 4 และ 5 เรียกว่าตัวถูกดำเนินการ และ '+' จะเรียกว่าตัวดำเนินการ

JavaScript รองรับตัวดำเนินการประเภทต่อไปนี้

  • ตัวดำเนินการเลขคณิต
  • ตัวดำเนินการเปรียบเทียบ
  • ตัวดำเนินการเชิงตรรกะ (หรือเชิงสัมพันธ์)
  • ตัวดำเนินการมอบหมาย
  • ตัวดำเนินการแบบมีเงื่อนไข (หรือแบบไตรภาค)

ตัวอย่าง

นี่คือตัวอย่างที่ระบุตัวอย่างของตัวดำเนินการ −

การสาธิตสด

<html>
   <body>
      <script>
         var a = 33;
         var b = 10;
         var c = "Test";
         var linebreak = "<br />";
         document.write("a + b = ");
         result = a + b;
         document.write(result);
         document.write(linebreak);
         document.write("a - b = ");
         result = a - b;
         document.write(result);
         document.write(linebreak);
         document.write("a / b = ");
         result = a / b;
         document.write(result);
         document.write(linebreak);
         document.write("a % b = ");
         result = a % b;
         document.write(result);
         document.write(linebreak);
         document.write("a + b + c = ");
         result = a + b + c;
         document.write(result);
         document.write(linebreak);
         a = ++a;
         document.write("++a = ");
         result = ++a;
         document.write(result);
         document.write(linebreak);
         b = --b;
         document.write("--b = ");
         result = --b;
         document.write(result);
         document.write(linebreak);
      </script>
   </body>
</html>