Skip to content

Instantly share code, notes, and snippets.

@Baldrani
Created May 6, 2025 12:59
Show Gist options
  • Select an option

  • Save Baldrani/d1c3f58182726877e060a9417b519885 to your computer and use it in GitHub Desktop.

Select an option

Save Baldrani/d1c3f58182726877e060a9417b519885 to your computer and use it in GitHub Desktop.
Loop on array without loop
const changeMessage = React.useCallback(() => {
const currentIndex = shuffledMessages.indexOf(message);
const nextIndex = (currentIndex + 1) % shuffledMessages.length;
setMessage(shuffledMessages[nextIndex]);
}, [message, shuffledMessages]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment