কম্পিউটার

জাভাস্ক্রিপ্টে সেট ক্লাস


এখানে MySet ক্লাসের সম্পূর্ণ বাস্তবায়ন।

উদাহরণ

class MySet {
   constructor() {
      this.container = {};
   }
   display() {
      console.log(this.container);
   }
   has(val) {
      return this.container.hasOwnProperty(val);
   }
   add(val) {
      if (!this.has(val)) {
         this.container[val] = val;
         return true;
      }
      return false;
   }
   delete(val) {
      if (this.has(val)) {
         delete this.container[val];
         return true;
      }
      return false;
   }
   clear() {
      this.container = {};
   }
   forEach(callback) {
      for (let prop in this.container) {
         callback(prop);
      }
   }
   static union(s1, s2) {
      if (!s1 instanceof MySet || !s2 instanceof MySet) {
         console.log("The given objects are not of type MySet");
         return null;
      }
      let newSet = new MySet();
      s1.forEach(elem => newSet.add(elem));
      s2.forEach(elem => newSet.add(elem));
      return newSet;
   }
   static difference(s1, s2) {
      if (!s1 instanceof MySet || !s2 instanceof MySet) {
         console.log("The given objects are not of type MySet");
         return null;
      }
      let newSet = new MySet();
      s1.forEach(elem => newSet.add(elem));
      s2.forEach(elem => newSet.delete(elem));
      return newSet;
   }
}

  1. জাভাস্ক্রিপ্টে একটি তারিখের দিন কিভাবে সেট করবেন?

  2. অ্যারে বনাম জাভাস্ক্রিপ্টে সেট।

  3. JavaScript দিয়ে innerHTML সেট করুন

  4. C# এ অবজেক্ট ক্লাস