Skip to content

Category: Questions

Matching paragraph with line breaks Regex

What regex can I use to match a paragraph (including line breaks) so when I use split(), I get an array with each sentence as one element? Something like this: I have that regex that returns [“one potatoe↵two apples↵”, “three onions”, “”] but what I’m looking for is […

Loop asynchronosly through array

I have following code: As you can see this does not work. So the content of the for loop works pretty well. It goes through the array and works well, but the for loop itself is the problem. How can I get the for loop wait for the inner content to finish before going to the next key? The timeline

query mongoDb to substract timestamp

I want a query to subtract day from a Date. I test this: {“lastSeen”: { “$gte”: {“$date”: { $subtract: [ “$date”, 1616000000 ] }}}} But doesn’t work. I have this error on Gamesparks. Error parsing JSON. Please use valid JSON, including double-quotes on obj…

How do I add an list element seperately to 2 lists?

I am pretty new to react. So I have one parent component which has two child components. These 2 children are the lists that should be displayed. So far I figured out how to transfer the data between two lists by checking the status property of the data. I am not able to understand how to add data into the

Find a specific object in an array of objects

I don’t understand because I use the method “find” but I get “undefined”… My data : I would like to have only the object with the ID 2 for example. So I wrote : But it does not work… I always get “undefined” Thanks for help Answer ID is a number, therefore…