Tagged Questions
13
votes
11answers
75k views
How do I remove objects from an Array in java?
Given an Array of n Objects, let's say is an Array of Strings, and it has the following values:
foo[0]="a";
foo[1]="cc";
foo[2]="a";
foo[3]="dd";
What do I have to do to delete/remove all the ...
5
votes
6answers
4k views
How do you handle the fetchxml result data?
I have avoided working with fetchxml as I have been unsure the best way to handle the result data after calling crmService.Fetch(fetchXml). In a couple of situations, I have used an XDocument with ...
3
votes
4answers
2k views
Removing elements with Array.map in JavaScript
I would like to filter an array of items by using the map() function. Here is a code snippet:
var filteredItems = items.map(function(item)
{
if( ...some condition... )
{
return item;
...