একটি নির্দিষ্ট মান উপেক্ষা করতে, যদি শর্তে লজিক্যাল নট (!) অপারেটর ব্যবহার করুন এবং আপনি অন্তর্ভুক্ত করতে চান তা দেখান৷
উদাহরণ
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