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

ดึงค่าโดยละเว้นค่าใดค่าหนึ่งใน JavaScript?


หากต้องการละเว้นค่าใดค่าหนึ่ง ให้ใช้ตัวดำเนินการ Not (!) แบบลอจิคัลในเงื่อนไข if และดึงข้อมูลการรับชมที่คุณต้องการรวมไว้

ตัวอย่าง

var customerDetails=[
   {
      customerName:"John",
      customerAge:28,
      customerCountryName:"US"
   },
   {
      customerName:"David",
      customerAge:25,
      customerCountryName:"AUS"
   },
   {
      customerName:"Mike",
      customerAge:32,
      customerCountryName:"UK"
   }
]
for(var i=0;i<customerDetails.length;i++){
   if(customerDetails[i].customerCountryName!="AUS"){
      console.log("The country name
      is="+customerDetails[i].customerCountryName);
   }
}

ในการรันโปรแกรมข้างต้น คุณต้องใช้คำสั่งต่อไปนี้ -

node fileName.js.

ที่นี่ ชื่อไฟล์ของฉันคือ demo179.js

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

PS C:\Users\Amit\javascript-code> node demo179.js
The country name is=US
The country name is=UK