ঘোষণা :
15 এপ্রিল, 2025 এর আগে আর্থ ইঞ্জিন ব্যবহার করার জন্য নিবন্ধিত সমস্ত অবাণিজ্যিক প্রকল্পগুলিকে অবশ্যই আর্থ ইঞ্জিন অ্যাক্সেস বজায় রাখার জন্য
অ-বাণিজ্যিক যোগ্যতা যাচাই করতে হবে।
Map.remove
সেভ করা পৃষ্ঠা গুছিয়ে রাখতে 'সংগ্রহ' ব্যবহার করুন
আপনার পছন্দ অনুযায়ী কন্টেন্ট সেভ করুন ও সঠিক বিভাগে রাখুন।
মানচিত্র থেকে প্রদত্ত আইটেম সরিয়ে দেয়, যদি এটি বিদ্যমান থাকে।
অপসারিত আইটেম ফেরত দেয় বা ম্যাপে যোগ না করা থাকলে শূন্য করে।
ব্যবহার | রিটার্নস | Map.remove(item) | অবজেক্ট |
যুক্তি | টাইপ | বিস্তারিত | item | অবজেক্ট | আইটেম অপসারণ. |
অন্য কিছু উল্লেখ না করা থাকলে, এই পৃষ্ঠার কন্টেন্ট Creative Commons Attribution 4.0 License-এর অধীনে এবং কোডের নমুনাগুলি Apache 2.0 License-এর অধীনে লাইসেন্স প্রাপ্ত। আরও জানতে, Google Developers সাইট নীতি দেখুন। Java হল Oracle এবং/অথবা তার অ্যাফিলিয়েট সংস্থার রেজিস্টার্ড ট্রেডমার্ক।
2025-07-24 UTC-তে শেষবার আপডেট করা হয়েছে।
[null,null,["2025-07-24 UTC-তে শেষবার আপডেট করা হয়েছে।"],[[["\u003cp\u003e\u003ccode\u003eMap.remove()\u003c/code\u003e deletes a specific item from the map if it's present.\u003c/p\u003e\n"],["\u003cp\u003eThe function returns the removed item, or null if the item wasn't in the map.\u003c/p\u003e\n"]]],["The `Map.remove(item)` function removes a specified item from a map. It takes one argument, `item`, which is the object intended for removal. The function returns the removed object if it was present in the map; otherwise, it returns `null`, indicating the item was not found. The return type is an Object. The function's purpose is to delete an entry if present and report its status.\n"],null,["# Map.remove\n\n\u003cbr /\u003e\n\nRemoves the given item from the map, if it exists.\n\n\u003cbr /\u003e\n\nReturns the removed item or null if it hadn't been added to the map.\n\n| Usage | Returns |\n|--------------------|---------|\n| `Map.remove(item)` | Object |\n\n| Argument | Type | Details |\n|----------|--------|---------------------|\n| `item` | Object | The item to remove. |"]]