Skip to content

Tag: reactjs

React Unable to play audio

In my return statement of my react code I have: This creates a HTML object for the audio. I have a file called 49.mp3 in the same directory as my code. Then I have an event listener that plays that sound when a key is pressed: When I press my key, I know this function gets called but no audio

How to use react.usememo using react and javascript?

i am doing some filtering on items based on ids which is in selection object. and then evaluating true or not based on its completion true or false from items which is an array of objects. below is my code, How can i put the block which includes noJobs calcualtion (from if(selection)) to React.useMemo. could …