Skip to content

How to order localStorage by KEY ASC?

I save data to localStorage. To be able to order the localStorage i use milliseconds as key. (But localStorage doesn’t sort or order, so i need to build a array or object that i can sort by key) Now i’d like to fetch localStorage and display the data ordered by key asc. I tried: So it looks like m…

Cannot destructure an object

I fetched and object which contains two properties, one is a number and one is an array. So I right away accessed the array and then assigned to a state and then passed each item to another component through context api. And it does not working. Here is my code: In this code ‘correct_answer’ is a …

How to give autofocus to a element when another element has it?

I am trying to give a textarea (which is added when you click on a button) autofocus with the autofocus attribute, but when I do that it doesn’t works and I get this message on the console: So now the question is: How can I get the focus to the textarea when some other element already has it? Answer Giv…