Skip to content

Tag: javascript

How to breakdown an array of objects?

I have an array of objects and i need to classify each object by name and then get the addition of some properties. To be more specific, I have a cart with some orders and i need to breakdown by product name so i can calculate how many items of that product were bought. That is the dummy data, I

cors error even after allowing all origins *

i have a post request on my at http://localhost:3000 and request resources from http://localhost:5500 even after allowing all origins it gives error. I’m stuck on this for a few hours now please help. i get this error this is where i’m setting my header this is my fetch request Answer Try below. A…

How to Extend Eslint to work with create-react-app

I’m working on a React application and I would like to have a linter set up so that I can see all the warning/errors in the console. The docs doesn’t say much: https://create-react-app.dev/docs/setting-up-your-editor/ I have added EXTEND_ESLINT=true in my .env.dev file and I have created a .eslint…

Node.js – Decrypt an array of encrypted strings

A few days ago I went to the “Security and login” page of facebook. And I noticed that they store our devices so that we can control what devices are using our facebook accounts. And I thought “Maybe I can create something like this”. So I created a new Node.js env and started coding. …