AngularJs check weather Array containing an item or not [duplicate] - angularjs

This question already has answers here:
Determine whether an array contains a value [duplicate]
(18 answers)
Closed 7 years ago.
I have array of name:
$scope.myArray with some values.
Now I want to check an Item is present in array or not,
If it is not present then I want to push that item into array and If that item is already in array then I don't want to push it.
Please tell me how to do this ?

if($scope.myArray.indexOf(item) === -1) {
$scope.myArray.push(item)
}
You can read about indexOf for more details. Also, checkout underscore js for some readily available functions.

Related

I'm having issues accessing data after fetch [duplicate]

This question already has answers here:
How can I use optional chaining with arrays and functions?
(6 answers)
Closed 3 months ago.
I fetched data from an API and I get this :
An array of arrays containing objects and properties containing the details of songs.
The issue is when i try to access the uri property, I get "Cannot read properties of undefined (reading '1')" with the code below :
const songTitleEl = chartData.map(data =>(
<ChartSongs key={data.key} audio={data?.hub?.actions[1]?.uri}/>
))
It should be working perfectly but it isn't and for the life of me I can't figure why.
actions could be null. Need the ? to check if index exists
<ChartSongs key={data.key} audio={data?.hub?.actions?.[1]?.uri}/>

Check if array has same values as other array [duplicate]

This question already has answers here:
Check if every element in one array is in a second array
(10 answers)
Closed 2 years ago.
I am trying to filter my entites by tags array, that can look like this:
const tags = ["tag1", "tag2"];
Every entity has property tags, that can have existing tags, for example:
["tag1", "tag2", "tag3"];
Or:
["tag1", "tag2"];
I need to compare if the tags array and the tags array of entity has the same values.
So far I have tried this code, but it returns an entity even if the two arrays dont have the same values (I'm guessing the includes() function is to blame).
tags.every((tag: any) => doc.tags.includes(tag));
Any ideas how can I check if the arrays have the same values?
Thank you in advance.
You can also compare the length as well
tags.every((tag: any) => doc.tags.includes(tag)) && tags.length === doc.tags.length;

Why splice delete only last element? [duplicate]

This question already has an answer here:
list items are not deleting properly (React)
(1 answer)
Closed 3 years ago.
onRemoveVariant(groupKey, questionKey, variantKey) {
const {questionGroups} = this.props;
questionGroups[groupKey].questions[questionKey].variants.splice(variantKey, 1);
this.props.updateQuestionnaire('questionGroups', questionGroups);
}
I have 5 variants and when i edit if i use delete variant first or any other variant, always only last variant get splice!
Why? how to use splice if splice by key doesnt work?
Img example
Find the index of that particular element in an array and then use that index in place of splice(variantKey,1) as splice(index,1)

Splitting spreadsheet strings into array values [duplicate]

This question already has answers here:
Javascript multiple email regexp validation
(7 answers)
Closed 7 years ago.
I need to split a value from a cell into separate array values. I am taking a list of emails from my spreadsheet and need to use the addCommenters() method.
Spreadsheets cell value: email1#email.com, email2#email.com, email3#email.com ... etc.
I need to split around the ", " properly to pass the array into addCommenters().
What is the programmatic way to do this?
If you get the value of that cell (using .getValue())
var emails = sheet.getRange(range_here).getValue()
and then apply the split() method
var commentersArray = emails.split(",")
you will have an array you can pass to the .addCommenters() method.
file.addCommenters(commentersArray);

How can you make an array of segues in swift? [duplicate]

This question already has an answer here:
How to Segue Randomly to ViewControllers in Swift? [closed]
(1 answer)
Closed 7 years ago.
I'm trying to make an array in swift of segues so that I can switch to a random view controller via pressing a button.
You can more reasonably maintain an array of strings that could represent the segue.identifier.

Resources